From 65314b14210a175bae095649584614973b3619df Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 12 八月 2025 13:48:14 +0800 Subject: [PATCH] 代码提交 --- ruoyi-project/src/main/resources/mapper/project/ServiceFundSharedMapper.xml | 20 ++++++++++++++------ 1 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceFundSharedMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceFundSharedMapper.xml index a05bebf..7f49f63 100644 --- a/ruoyi-project/src/main/resources/mapper/project/ServiceFundSharedMapper.xml +++ b/ruoyi-project/src/main/resources/mapper/project/ServiceFundSharedMapper.xml @@ -60,7 +60,9 @@ <result property="zffs" column="zffs"/> <result property="riqi" column="riqi"/> <result property="bh" column="bh"/> - <result property="checkstatus" column="checkstatus"/> + <result property="checkstatus" column="checkstatus"/> + <result property="performancetype" column="performancetype"/> + <result property="applyTime" column="apply_time"/> </resultMap> <sql id="selectServiceFundSharedVo"> @@ -119,14 +121,16 @@ zffs, riqi, bh, - checkstatus + checkstatus, + apply_time, + performancetype from service_fund_shared </sql> <select id="getFundShareInfoById" resultType="com.ruoyi.project.domain.ServiceFundShared" resultMap="ServiceFundSharedResult"> <include refid="selectServiceFundSharedVo"/> - where serfunid = #{fundid} + where serfunid = #{fundid} and del_flag=0 </select> <select id="selectServiceFundSharedList" parameterType="ServiceFundShared" resultMap="ServiceFundSharedResult"> @@ -187,7 +191,11 @@ <update id="delfundsharedInfoById"> UPDATE service_fund_shared SET del_flag = 1 - WHERE ID = #{fundId} - and del_flag != 1 + WHERE + del_flag != 1 + <if test="fundId != null">and ID = #{fundId}</if> + <if test="serfunid != null">and serfunid = #{serfunid}</if> + + </update> -</mapper> \ No newline at end of file +</mapper> -- Gitblit v1.9.3