| | |
| | | <delete id="deleteReceivableFeeDetailById" parameterType="Integer"> |
| | | delete from receivable_fee_detail where id = #{id} |
| | | </delete> |
| | | <!--根据应收费用ID删除明细--> |
| | | <delete id="deleteReceivableFeeDetailByReceivableFeeId" parameterType="Integer"> |
| | | delete from receivable_fee_detail where receivable_fee_id = #{receivableFeeId} |
| | | </delete> |
| | | <delete id="deleteReceivableFeeDetailByIds" parameterType="Integer"> |
| | | delete from receivable_fee_detail where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | |
| | | </foreach> |
| | | </delete> |
| | | |
| | | <!--根据应收费用ID数组查询明细--> |
| | | <select id="selectReceivableFeeDetailByReceivableFeeIds" parameterType="Integer" resultMap="ReceivableFeeDetailResult"> |
| | | <include refid="selectReceivableFeeDetailVo"/> |
| | | where thisTab.receivable_fee_id in |
| | | <foreach item="receivableFeeId" collection="array" open="(" separator="," close=")"> |
| | | #{receivableFeeId} |
| | | </foreach> |
| | | </select> |
| | | |
| | | </mapper> |