fbc659392d12f4787f8eaadd8ec9556b8b6c9262.svn-base 999 B

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.TacPblmQlttvListDao;
  4. import cn.com.goldenwater.dcproj.model.TacPblmQlttvList;
  5. import cn.com.goldenwater.dcproj.param.TacPblmQlttvListParam;
  6. import cn.com.goldenwater.dcproj.service.TacPblmQlttvListService;
  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-19
  13. */
  14. @Service
  15. @Transactional
  16. public class TacPblmQlttvListServiceImpl extends AbstractCrudService<TacPblmQlttvList, TacPblmQlttvListParam> implements TacPblmQlttvListService {
  17. @Autowired
  18. private TacPblmQlttvListDao tacPblmQlttvListDao;
  19. public TacPblmQlttvListServiceImpl(TacPblmQlttvListDao tacPblmQlttvListDao) {
  20. super(tacPblmQlttvListDao);
  21. this.tacPblmQlttvListDao = tacPblmQlttvListDao;
  22. }
  23. }