From 5b6bd2b10c8c87b658b888f4d0384aec3ed491ce Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 26 八月 2025 12:21:29 +0800 Subject: [PATCH] 代码提交 --- ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml | 36 ++++++++++++++++++++++++++++++++---- 1 files changed, 32 insertions(+), 4 deletions(-) diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml index 523a384..5ee0cab 100644 --- a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml +++ b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementSharedMapper.xml @@ -62,6 +62,10 @@ <result property="donorrelatives" column="donorrelatives"/> <result property="zffs" column="zffs"/> <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"> @@ -121,7 +125,11 @@ donoramount, donorrelatives, zffs, - riqi + riqi, + bh, + checkstatus, + apply_time, + performancetype from service_reimbursement_shared </sql> @@ -131,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> @@ -191,9 +200,28 @@ <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> + <update id="delResharedInfoByReimid"> + UPDATE service_reimbursement_shared + SET del_flag = 1, + update_time = sysdate() + WHERE reimid = #{reimid} + and del_flag != 1 + </update> -</mapper> \ No newline at end of file + <update id="updateReimShareByfundid"> + UPDATE service_reimbursement_shared + SET + <if test="bh != null">bh = #{bh},</if> + <if test="riqi != null">riqi = #{riqi},</if> + <if test="zffs != null">zffs = #{zffs},</if> + update_time = sysdate() + WHERE reimid = #{reimid} + and del_flag != 1 + </update> + +</mapper> -- Gitblit v1.9.3