e16bcf6b3385fdcda133cb855648836ae8015f6d.svn-base 1.0 KB

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.service.impl.rdwsp;
  2. import cn.com.goldenwater.core.service.AbstractCrudService;
  3. import cn.com.goldenwater.dcproj.dao.BisRdwspRgstrPoorDao;
  4. import cn.com.goldenwater.dcproj.model.BisRdwspRgstrPoor;
  5. import cn.com.goldenwater.dcproj.param.BisRdwspRgstrPoorParam;
  6. import cn.com.goldenwater.dcproj.service.BisRdwspRgstrPoorService;
  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-10-9
  13. */
  14. @Service
  15. @Transactional(rollbackFor = Exception.class)
  16. public class BisRdwspRgstrPoorServiceImpl extends AbstractCrudService<BisRdwspRgstrPoor, BisRdwspRgstrPoorParam> implements BisRdwspRgstrPoorService {
  17. @Autowired
  18. private BisRdwspRgstrPoorDao bisRdwspRgstrPoorDao;
  19. public BisRdwspRgstrPoorServiceImpl(BisRdwspRgstrPoorDao bisRdwspRgstrPoorDao) {
  20. super(bisRdwspRgstrPoorDao);
  21. this.bisRdwspRgstrPoorDao = bisRdwspRgstrPoorDao;
  22. }
  23. }