| | |
| | | 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> |
| | | <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> |