From 2be2f6c3e5b2be2bae1562423a9a4d29aa174aae Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 22 七月 2024 10:57:10 +0800 Subject: [PATCH] 工单阈值重构 --- ycl-server/src/main/java/com/ycl/platform/mapper/ReportMapper.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/ReportMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/ReportMapper.java index 802abaf..bb38f57 100644 --- a/ycl-server/src/main/java/com/ycl/platform/mapper/ReportMapper.java +++ b/ycl-server/src/main/java/com/ycl/platform/mapper/ReportMapper.java @@ -1,11 +1,14 @@ package com.ycl.platform.mapper; +import com.baomidou.mybatisplus.core.metadata.IPage; import com.ycl.platform.domain.entity.Report; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.ycl.platform.domain.query.ReportQuery; import com.ycl.platform.domain.vo.ReportVO; import com.ycl.platform.domain.form.ReportForm; import java.util.List; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; /** * 鎶ュ Mapper 鎺ュ彛 @@ -16,4 +19,5 @@ @Mapper public interface ReportMapper extends BaseMapper<Report> { + IPage<ReportVO> page(IPage page, @Param("query") ReportQuery query); } -- Gitblit v1.8.0