From 1a2e22a27627b40689257442cc5a46598c634f8e Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期五, 23 五月 2025 14:16:28 +0800 Subject: [PATCH] 测评接口完成,添加数据权限 --- ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml index 9d1b2d5..1cf5f25 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml @@ -82,7 +82,7 @@ <if test="query.teamName != null and query.teamName != ''"> and tpt.team_name like concat('%', #{query.teamName}) </if> - <if test="query.status != null and query.status != -1"> + <if test="query.status != null"> and tfsr.status = #{query.status} </if> <if test="query.status == null"> @@ -125,7 +125,7 @@ <if test="query.teamName != null and query.teamName != ''"> and tpt.team_name like concat('%', #{query.teamName}) </if> - <if test="query.status != null and query.status != -1"> + <if test="query.status != null"> and tfsr.status = #{query.status} </if> <if test="query.status == null"> -- Gitblit v1.7.1