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/TQaProduceReportMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml index 7a36ed1..71614f4 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml @@ -50,6 +50,12 @@ <if test="query.status != null"> and tqpr.status = #{query.status} </if> + <if test="query.teamIds != null and query.teamIds.size() > 0"> + and tqpr.team_id in + <foreach collection="query.teamIds" item="teamId" open="(" separator="," close=")"> + #{teamId} + </foreach> + </if> AND tqpr.disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} </where> ORDER BY tqpr.create_time DESC -- Gitblit v1.7.1