From 2a12d6d43b6f7abc0ef594ee9b992f34ee00b7a1 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期五, 16 八月 2024 10:28:59 +0800
Subject: [PATCH] python接口

---
 ycl-server/src/main/java/com/ycl/platform/mapper/ReportMapper.java |   13 +++++++++++++
 1 files changed, 13 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..aff5d13 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,15 @@
 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;
+import org.springframework.web.bind.annotation.PathVariable;
 
 /**
  * 鎶ュ Mapper 鎺ュ彛
@@ -16,4 +20,13 @@
 @Mapper
 public interface ReportMapper extends BaseMapper<Report> {
 
+    IPage<ReportVO> page(IPage page, @Param("query") ReportQuery query);
+
+    /**
+     * 瀹℃牳璁板綍
+     *
+     * @param id
+     * @return
+     */
+    List<ReportVO> examineRecord(@Param("id") Integer id);
 }

--
Gitblit v1.8.0