From b9cc263b8d1d31608a4c16cd157cc84b51e3d29d Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期五, 02 八月 2024 18:11:24 +0800
Subject: [PATCH] 变更

---
 ruoyi-project/src/main/resources/mapper/project/VDonationworkflowMapper.xml |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ruoyi-project/src/main/resources/mapper/project/VDonationworkflowMapper.xml b/ruoyi-project/src/main/resources/mapper/project/VDonationworkflowMapper.xml
index 452cdb1..564d6a0 100644
--- a/ruoyi-project/src/main/resources/mapper/project/VDonationworkflowMapper.xml
+++ b/ruoyi-project/src/main/resources/mapper/project/VDonationworkflowMapper.xml
@@ -24,6 +24,7 @@
         <result property="organcount" column="organcount"/>
         <result property="operationbegtime" column="operationBegTime"/>
         <result property="completetime" column="completeTime"/>
+        <result property="regionallevel" column="regionallevel"/>
     </resultMap>
 
     <sql id="selectVDonationworkflowVo">
@@ -45,7 +46,8 @@
                conclusionTime,
                organcount,
                operationBegTime,
-               completeTime
+               completeTime,
+               regionallevel
         from v_donationworkflow
     </sql>
 
@@ -63,8 +65,11 @@
             <if test="reportername != null  and reportername != ''">and reporterName like concat('%', #{reportername},
                 '%')
             </if>
+            --
             <if test="donatetime != null ">and donatetime = #{donatetime}</if>
-            <if test="reporttime != null ">and ReportTime = #{reporttime}</if>
+            <if test="starttime != null ">and donatetime >= #{starttime}</if>
+            <if test="endtime != null ">and donatetime &lt;= #{endtime}
+            </if>
             <if test="coreteamassessconclusion != null  and coreteamassessconclusion != ''">and CoreTeamAssessConclusion
                 = #{coreteamassessconclusion}
             </if>
@@ -75,6 +80,7 @@
             <if test="organcount != null ">and organcount = #{organcount}</if>
             <if test="operationbegtime != null ">and operationBegTime = #{operationbegtime}</if>
             <if test="completetime != null ">and completeTime = #{completetime}</if>
+            <if test="regionallevel != null ">and regionallevel = #{regionallevel}</if>
         </where>
     </select>
 

--
Gitblit v1.9.3