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