Ver Fonte

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

ld_jiangxf há 8 anos atrás
pai
commit
2b6d691991

+ 27 - 0
gkjsjy/trunk/src/com/xt/jygl/gkyxtjyfx/hzttltj/service/impl/HwttlfxServiceImpl.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.HwttlfxDao;
+import com.xt.jygl.gkyxtjyfx.hzttltj.entity.FlhwttlhjEntity;
+import com.xt.jygl.gkyxtjyfx.hzttltj.service.HwttlfxService;
+import com.xtframe.sec.common.SecRepository;
+
+@Service
+public class HwttlfxServiceImpl extends JyglBaseService<FlhwttlhjEntity, String> implements HwttlfxService{
+
+	@Autowired
+	private HwttlfxDao dao;
+	
+	@Override
+	protected SecRepository<FlhwttlhjEntity, String> getDao() {
+		return this.dao;
+	}
+	
+	@Override
+	public FlhwttlhjEntity findOne(String id) {
+		return dao.findOne(id);
+	}
+}