package cn.com.goldenwater.dcproj.service.impl; import cn.com.goldenwater.dcproj.dao.BisInspHystRectInfoDao; import cn.com.goldenwater.dcproj.model.BisInspHystRectInfo; import cn.com.goldenwater.dcproj.param.BisInspHystRectInfoParam; import cn.com.goldenwater.dcproj.service.BisInspHystRectInfoService; import cn.com.goldenwater.core.service.AbstractCrudService; import com.github.pagehelper.PageHelper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.List; /** * @author lune * @date 2021-3-2 */ @Service @Transactional(rollbackFor = Exception.class) public class BisInspHystRectInfoServiceImpl extends AbstractCrudService implements BisInspHystRectInfoService { @Autowired private BisInspHystRectInfoDao bisInspHystRectInfoDao; public BisInspHystRectInfoServiceImpl(BisInspHystRectInfoDao bisInspHystRectInfoDao) { super(bisInspHystRectInfoDao); this.bisInspHystRectInfoDao = bisInspHystRectInfoDao; } }