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/ServiceReimbursementSharedMapper.xml | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml
index ce192d9..81e4056 100644
--- a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml
+++ b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml
@@ -64,6 +64,8 @@
<result property="riqi" column="riqi"/>
<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">
@@ -125,7 +127,9 @@
zffs,
riqi,
bh,
- checkstatus
+ checkstatus,
+ apply_time,
+ performancetype
from service_reimbursement_shared
</sql>
@@ -135,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>
@@ -195,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