ke
2024-04-22 41c8dd06fe3218e54314a58544d7cefe732fbdfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.gistack.sm.constructionReport.mapper;
 
import cn.gistack.sm.constructionReport.entity.ConstructionReport;
import cn.gistack.sm.constructionReport.vo.ConstructionReportVO;
import cn.gistack.sm.feedback.entity.Feedback;
import cn.gistack.sm.feedback.vo.FeedbackVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface ConstructionReportMapper extends BaseMapper<ConstructionReport> {
    List<ConstructionReportVO> getPage(IPage<ConstructionReportVO> page, @Param("vo") ConstructionReportVO constructionReportVO);
}