From 8f022a00e49f45c12efda5b9ef00e80fdecb2373 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Tue, 23 Jun 2026 10:53:47 +0800
Subject: [PATCH] add : 吉安支持查询待验收的接口

---
 drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/mapper/GdClueEventMapper.java |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/mapper/GdClueEventMapper.java b/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/mapper/GdClueEventMapper.java
index 22ea340..1db457e 100644
--- a/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/mapper/GdClueEventMapper.java
+++ b/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/mapper/GdClueEventMapper.java
@@ -17,6 +17,7 @@
 package org.sxkj.gd.workorder.mapper;
 
 import org.sxkj.gd.workorder.entity.GdClueEventEntity;
+import org.sxkj.gd.workorder.vo.GdClueEventCountVO;
 import org.sxkj.gd.workorder.vo.GdClueEventListVO;
 import org.sxkj.gd.workorder.vo.GdClueEventVO;
 import org.sxkj.gd.workorder.excel.GdClueEventExcel;
@@ -60,7 +61,8 @@
 	 * @param onlyMine
 	 * @return
 	 */
-	List<GdClueEventListVO> selectGdClueEventSimpleList(@Param("deptId") Long deptId, @Param("userId") Long userId, @Param("onlyMine") Integer onlyMine);
+	List<GdClueEventListVO> selectGdClueEventSimpleList(@Param("deptId") Long deptId, @Param("userId") Long userId,
+			@Param("onlyMine") Integer onlyMine, @Param("keyword") String keyword);
 
 	/**
 	 * 详情查询
@@ -71,6 +73,16 @@
 	 */
 	GdClueEventVO selectGdClueEventDetailById(@Param("id") Long id, @Param("deptId") Long deptId);
 
+	/**
+	 * 数量统计
+	 *
+	 * @param deptId
+	 * @param userId
+	 * @return
+	 */
+	GdClueEventCountVO selectGdClueEventCount(@Param("deptId") Long deptId, @Param("userId") Long userId,
+			@Param("keyword") String keyword);
+
 
 	/**
 	 * 获取导出数据

--
Gitblit v1.9.3