954158690f0a4938727333ab39a67e27f72f5b9e.svn-base 903 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.TacYearLotDao;
  4. import cn.com.goldenwater.dcproj.model.TacYearLot;
  5. import cn.com.goldenwater.dcproj.param.TacYearLotParam;
  6. import cn.com.goldenwater.dcproj.service.TacYearLotService;
  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-11
  13. */
  14. @Service
  15. @Transactional
  16. public class TacYearLotServiceImpl extends AbstractCrudService<TacYearLot, TacYearLotParam> implements TacYearLotService {
  17. @Autowired
  18. private TacYearLotDao tacYearLotDao;
  19. public TacYearLotServiceImpl(TacYearLotDao tacYearLotDao) {
  20. super(tacYearLotDao);
  21. this.tacYearLotDao = tacYearLotDao;
  22. }
  23. }