From ec213a71112c17cb268ae2c5336348f496e7b3ae Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期一, 26 五月 2025 17:31:24 +0800
Subject: [PATCH] 修改接口

---
 ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml
index 9b92717..ba88585 100644
--- a/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml
@@ -54,6 +54,12 @@
             <if test="query.reportContent != null and query.reportContent != ''">
                 and tqtir.report_content = #{query.reportContent}
             </if>
+            <if test="query.teamIds != null and query.teamIds.size() > 0">
+                and tqti.team_id in
+                <foreach item="teamId" collection="query.teamIds" separator="," close=")" open="(" index="">
+                    #{teamId}
+                </foreach>
+            </if>
             <if test="query.status != null">
                 and tqtir.status = #{query.status}
             </if>

--
Gitblit v1.7.1