From b6dd47b05107fc36d8ff4f7f29a4446521f95503 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 02 一月 2025 18:44:28 +0800
Subject: [PATCH] 代码提交

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

diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml
index a150213..81e4056 100644
--- a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml
+++ b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml
@@ -65,6 +65,7 @@
         <result property="bh" column="bh"/>
         <result property="checkstatus" column="checkstatus"/>
         <result property="performancetype" column="performancetype"/>
+        <result property="applyTime" column="apply_time"/>
     </resultMap>
 
     <sql id="selectServiceReimbursementSharedVo">
@@ -127,6 +128,7 @@
                riqi,
                bh,
                checkstatus,
+               apply_time,
                performancetype
         from service_reimbursement_shared
     </sql>
@@ -137,7 +139,8 @@
         where reimid = #{RemId} and del_flag!=1
     </select>
 
-    <select id="selectServiceReimbursementSharedList" parameterType="com.ruoyi.project.domain.ServiceReimbursementShared"
+    <select id="selectServiceReimbursementSharedList"
+            parameterType="com.ruoyi.project.domain.ServiceReimbursementShared"
             resultMap="ServiceReimbursementSharedResult">
         <include refid="selectServiceReimbursementSharedVo"/>
         <where>
@@ -197,7 +200,8 @@
 
     <update id="delResharedInfoById">
         UPDATE service_reimbursement_shared
-        SET del_flag = 1
+        SET del_flag   = 1,
+            update_time = sysdate()
         WHERE id = #{id}
           and del_flag != 1
     </update>

--
Gitblit v1.9.3