Bladeren bron

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

ld_jiangxf 8 jaren geleden
bovenliggende
commit
bae7589f97

+ 9 - 0
gkjsjy/trunk/src/com/xt/jygl/gkyxtjyfx/hzttltj/service/GyttlfxService.java

@@ -0,0 +1,9 @@
+package com.xt.jygl.gkyxtjyfx.hzttltj.service;
+
+import com.xt.jygl.gkyxtjyfx.hzttltj.entity.HzttlEntity;
+
+public interface GyttlfxService {
+	
+	HzttlEntity findOne(String id);
+	
+}

+ 9 - 0
gkjsjy/trunk/src/com/xt/jygl/gkyxtjyfx/hzttltj/service/HzttlfxService.java

@@ -0,0 +1,9 @@
+package com.xt.jygl.gkyxtjyfx.hzttltj.service;
+
+import com.xt.jygl.gkyxtjyfx.hzttltj.entity.FlhwttlhzEntity;
+
+
+public interface HzttlfxService {
+	
+	FlhwttlhzEntity findOne(String id);
+}

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

@@ -0,0 +1,27 @@
+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.HzttlfxDao;
+import com.xt.jygl.gkyxtjyfx.hzttltj.entity.FlhwttlhzEntity;
+import com.xt.jygl.gkyxtjyfx.hzttltj.service.HzttlfxService;
+import com.xtframe.sec.common.SecRepository;
+
+@Service
+public class HzttlfxServiceImpl extends JyglBaseService<FlhwttlhzEntity, String> implements HzttlfxService{
+
+	@Autowired
+	private HzttlfxDao dao;
+	
+	@Override
+	protected SecRepository<FlhwttlhzEntity, String> getDao() {
+		return dao;
+	}
+
+	@Override
+	public FlhwttlhzEntity findOne(String id) {
+		return dao.findOne(id);
+	}
+}