gonglilong
2024-09-14 7f615dc1f37ccc9efd7f5b2f7e044c2e62f01074
1
2
3
4
5
6
7
8
9
10
package cn.gistack.sm.constructionReport.service;
 
import cn.gistack.sm.constructionReport.entity.ConstructionReport;
import cn.gistack.sm.constructionReport.vo.ConstructionReportVO;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.core.mp.base.BaseService;
 
public interface IConstructionReportService extends BaseService<ConstructionReport> {
    IPage<ConstructionReportVO> selectPage(IPage<ConstructionReportVO> page, ConstructionReportVO constructionReportVO);
}