فهرست منبع

git-svn-id: https://192.168.57.71/svn/jsgkj@1274 931142cf-59ea-a443-aa0e-51397b428577

ld_xuhx 8 سال پیش
والد
کامیت
ae87059faa

+ 10 - 0
gkjsjy/trunk/src/com/xt/jygl/gkyxtjyfx/hzttltj/dao/HzttlDao.java

@@ -0,0 +1,10 @@
+package com.xt.jygl.gkyxtjyfx.hzttltj.dao;
+
+import com.xt.jygl.gkyxtjyfx.hzttltj.entity.HzttlEntity;
+import com.xtframe.sec.common.SecRepository;
+
+public interface HzttlDao extends SecRepository<HzttlEntity, String> {
+
+	
+	
+}

+ 7 - 0
gkjsjy/trunk/src/com/xt/jygl/gkyxtjyfx/hzttltj/service/HzttlService.java

@@ -0,0 +1,7 @@
+package com.xt.jygl.gkyxtjyfx.hzttltj.service;
+
+
+public interface HzttlService  {
+
+	
+}

+ 28 - 0
gkjsjy/trunk/src/com/xt/jygl/gkyxtjyfx/hzttltj/service/impl/HzttlServiceImpl.java

@@ -0,0 +1,28 @@
+package com.xt.jygl.gkyxtjyfx.hzttltj.service.impl;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.xt.jygl.common.service.JyglBaseService;
+import com.xt.jygl.gkyxtjyfx.hzttltj.dao.HzttlDao;
+import com.xt.jygl.gkyxtjyfx.hzttltj.entity.HzttlEntity;
+import com.xt.jygl.gkyxtjyfx.hzttltj.service.HzttlService;
+import com.xtframe.core.support.SecurityMgr;
+import com.xtframe.sec.common.SecRepository;
+
+@Service
+public class HzttlServiceImpl extends JyglBaseService<HzttlEntity, String> implements HzttlService {
+	@Autowired
+	private HzttlDao dao;
+	@Autowired
+	protected SecurityMgr securityMgr;
+
+	@Override
+	protected SecRepository<HzttlEntity, String> getDao() {
+
+		return this.dao;
+	}
+
+
+
+}