15ab45237439629b156d650b76aaeb320b457589.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service.impl.rsml;
  2. import cn.com.goldenwater.dcproj.dao.BisInspRsmlRgstrPresDao;
  3. import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstrPres;
  4. import cn.com.goldenwater.dcproj.param.BisInspRsmlRgstrPresParam;
  5. import cn.com.goldenwater.dcproj.service.BisInspRsmlRgstrPresService;
  6. import cn.com.goldenwater.core.service.AbstractCrudService;
  7. import com.github.pagehelper.PageHelper;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.stereotype.Service;
  10. import org.springframework.transaction.annotation.Transactional;
  11. import java.util.List;
  12. /**
  13. * @author lune
  14. * @date 2020-3-9
  15. */
  16. @Service
  17. @Transactional
  18. public class BisInspRsmlRgstrPresServiceImpl extends AbstractCrudService<BisInspRsmlRgstrPres, BisInspRsmlRgstrPresParam> implements BisInspRsmlRgstrPresService {
  19. @Autowired
  20. private BisInspRsmlRgstrPresDao bisInspRsmlRgstrPresDao;
  21. public BisInspRsmlRgstrPresServiceImpl(BisInspRsmlRgstrPresDao bisInspRsmlRgstrPresDao) {
  22. super(bisInspRsmlRgstrPresDao);
  23. this.bisInspRsmlRgstrPresDao = bisInspRsmlRgstrPresDao;
  24. }
  25. }