|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|