4c86209db85926229218a25f0eac3e5759a28935.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.service.impl.waga;
  2. import cn.com.goldenwater.core.service.AbstractCrudService;
  3. import cn.com.goldenwater.dcproj.dao.BisInspWagaSafeManageDao;
  4. import cn.com.goldenwater.dcproj.model.BisInspWagaSafeManage;
  5. import cn.com.goldenwater.dcproj.param.BisInspWagaSafeManageParam;
  6. import cn.com.goldenwater.dcproj.service.BisInspWagaSafeManageService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Service;
  9. import org.springframework.transaction.annotation.Transactional;
  10. /**
  11. * @author lune
  12. * @date 2019-4-22
  13. */
  14. @Service
  15. @Transactional
  16. public class BisInspWagaSafeManageServiceImpl extends AbstractCrudService<BisInspWagaSafeManage, BisInspWagaSafeManageParam> implements BisInspWagaSafeManageService {
  17. @Autowired
  18. private BisInspWagaSafeManageDao bisInspWagaSafeManageDao;
  19. public BisInspWagaSafeManageServiceImpl(BisInspWagaSafeManageDao bisInspWagaSafeManageDao) {
  20. super(bisInspWagaSafeManageDao);
  21. this.bisInspWagaSafeManageDao = bisInspWagaSafeManageDao;
  22. }
  23. }