From a0c2e172574bdf5c50fe31803756a3f0c869a9dd Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期二, 20 五月 2025 16:02:43 +0800 Subject: [PATCH] 测评接口,草稿箱修改 --- ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml | 9 +++++++++ 1 files changed, 9 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 f8b7e33..99114eb 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TFeasibilityStudyReportMapper.xml @@ -47,6 +47,9 @@ <if test="query.status != null"> and tfsr.status = #{query.status} </if> + <if test="query.status == null"> + and tfsr.status != -1 + </if> <if test="query.reportType != null"> and tfsr.report_type = #{query.reportType} </if> @@ -81,6 +84,9 @@ </if> <if test="query.status != null"> and tfsr.status = #{query.status} + </if> + <if test="query.status == null"> + and tfsr.status != -1 </if> <if test="query.reportType != null"> and tfsr.report_type = #{query.reportType} @@ -121,6 +127,9 @@ <if test="query.status != null"> and tfsr.status = #{query.status} </if> + <if test="query.status == null"> + and tfsr.status != -1 + </if> <if test="query.reportType != null"> and tfsr.report_type = #{query.reportType} </if> -- Gitblit v1.7.1