package cn.gistack.sm.constructionReport.service.impl; import cn.gistack.sm.constructionReport.entity.ConstructionReport; import cn.gistack.sm.constructionReport.mapper.ConstructionReportMapper; import cn.gistack.sm.constructionReport.service.IConstructionReportService; import cn.gistack.sm.constructionReport.vo.ConstructionReportVO; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springblade.core.mp.base.BaseServiceImpl; import org.springblade.core.tool.utils.StringUtil; import org.springframework.stereotype.Service; @Service public class ConstructionReportServiceImpl extends BaseServiceImpl implements IConstructionReportService { @Override public IPage selectPage(IPage page, ConstructionReportVO constructionReportVO) { return page.setRecords(baseMapper.getPage(page,constructionReportVO)); } }