| | |
| | | <result property="deptmentname" column="DeptmentName"/> |
| | | <result property="opochecker" column="OPOchecker"/> |
| | | <result property="finvicepresident" column="FinVicePresident"/> |
| | | <result property="president" column="president"/> |
| | | <result property="busvicepresident" column="BusVicePresident"/> |
| | | <result property="officedirector" column="OfficeDirector"/> |
| | | <result property="financedirector" column="FinanceDirector"/> |
| | |
| | | <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"> |
| | |
| | | DeptmentName, |
| | | OPOchecker, |
| | | FinVicePresident, |
| | | president, |
| | | BusVicePresident, |
| | | OfficeDirector, |
| | | FinanceDirector, |
| | |
| | | donoramount, |
| | | donorrelatives, |
| | | zffs, |
| | | riqi |
| | | riqi, |
| | | bh, |
| | | checkstatus, |
| | | apply_time, |
| | | performancetype |
| | | from service_reimbursement_shared |
| | | </sql> |
| | | |
| | |
| | | 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> |
| | |
| | | |
| | | <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> |