1edda19b069165b5153623aeca449388a76b7d06.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service.impl;
  2. import cn.com.goldenwater.dcproj.dao.BisInspHystRectInfoDao;
  3. import cn.com.goldenwater.dcproj.model.BisInspHystRectInfo;
  4. import cn.com.goldenwater.dcproj.param.BisInspHystRectInfoParam;
  5. import cn.com.goldenwater.dcproj.service.BisInspHystRectInfoService;
  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 2021-3-2
  15. */
  16. @Service
  17. @Transactional(rollbackFor = Exception.class)
  18. public class BisInspHystRectInfoServiceImpl extends AbstractCrudService<BisInspHystRectInfo, BisInspHystRectInfoParam> implements BisInspHystRectInfoService {
  19. @Autowired
  20. private BisInspHystRectInfoDao bisInspHystRectInfoDao;
  21. public BisInspHystRectInfoServiceImpl(BisInspHystRectInfoDao bisInspHystRectInfoDao) {
  22. super(bisInspHystRectInfoDao);
  23. this.bisInspHystRectInfoDao = bisInspHystRectInfoDao;
  24. }
  25. }