a6277dfe2ee99fa2d84f6249620cf13c944f8f18.svn-base 1.0 KB

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.service.impl.vill2020;
  2. import cn.com.goldenwater.core.service.AbstractCrudService;
  3. import cn.com.goldenwater.dcproj.dao.BisNewWateruserInfoDao;
  4. import cn.com.goldenwater.dcproj.model.BisNewWateruserInfo;
  5. import cn.com.goldenwater.dcproj.param.BisNewWateruserInfoParam;
  6. import cn.com.goldenwater.dcproj.service.BisNewWateruserInfoService;
  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 2020-3-27
  13. */
  14. @Service
  15. @Transactional
  16. public class BisNewWateruserInfoServiceImpl extends AbstractCrudService<BisNewWateruserInfo, BisNewWateruserInfoParam> implements BisNewWateruserInfoService {
  17. @Autowired
  18. private BisNewWateruserInfoDao bisNewWateruserInfoDao;
  19. public BisNewWateruserInfoServiceImpl(BisNewWateruserInfoDao bisNewWateruserInfoDao) {
  20. super(bisNewWateruserInfoDao);
  21. this.bisNewWateruserInfoDao = bisNewWateruserInfoDao;
  22. }
  23. }