5416f5496b7e3eee4135aaa688bf1220f71aee7c.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.service.impl.tac;
  2. import cn.com.goldenwater.core.service.AbstractCrudService;
  3. import cn.com.goldenwater.dcproj.dao.TacTacInspPersPrisLtsDao;
  4. import cn.com.goldenwater.dcproj.model.TacTacInspPersPrisLts;
  5. import cn.com.goldenwater.dcproj.param.TacTacInspPersPrisLtsParam;
  6. import cn.com.goldenwater.dcproj.service.TacTacInspPersPrisLtsService;
  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-9-6
  13. */
  14. @Service
  15. @Transactional
  16. public class TacTacInspPersPrisLtsServiceImpl extends AbstractCrudService<TacTacInspPersPrisLts, TacTacInspPersPrisLtsParam> implements TacTacInspPersPrisLtsService {
  17. @Autowired
  18. private TacTacInspPersPrisLtsDao tacTacInspPersPrisLtsDao;
  19. public TacTacInspPersPrisLtsServiceImpl(TacTacInspPersPrisLtsDao tacTacInspPersPrisLtsDao) {
  20. super(tacTacInspPersPrisLtsDao);
  21. this.tacTacInspPersPrisLtsDao = tacTacInspPersPrisLtsDao;
  22. }
  23. }