liusheng
2024-05-16 2f13f59f023fba63aa993172d48c14bcaaafb233
ruoyi-project/src/main/resources/mapper/project/ServiceFundSharedMapper.xml
@@ -62,6 +62,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="selectServiceFundSharedVo">
@@ -121,6 +122,7 @@
               riqi,
               bh,
               checkstatus,
               applytime,
               performancetype
        from service_fund_shared
    </sql>
@@ -189,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>
</mapper>