From 61d85c788d4d966886617ccdf3335c6a55896878 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期三, 14 五月 2025 10:09:55 +0800 Subject: [PATCH] 接口对接 --- ruoyi-system/src/main/resources/mapper/system/TQaTestItemMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TQaTestItemMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TQaTestItemMapper.xml index 78cb784..4b0f0fd 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TQaTestItemMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TQaTestItemMapper.xml @@ -43,6 +43,12 @@ <if test="query.status != null"> and tqti.status = #{query.status} </if> + <if test="query.teamIds != null and query.teamIds.size() > 0"> + and tqti.team_id in + <foreach collection="query.teamIds" item="teamId" open="(" separator="," close=")"> + #{teamId} + </foreach> + </if> AND tqti.disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} </where> ORDER BY tqti.create_time DESC -- Gitblit v1.7.1