ke
2024-04-22 41c8dd06fe3218e54314a58544d7cefe732fbdfb
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);
}