wujianwei
2025-12-22 ee834c8bb24661338ba63877c61ded17efec9dd7
service/src/main/resources/mapper/cwgl/ReceivableFeeDetailMapper.xml
@@ -172,6 +172,10 @@
    <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=")">
@@ -179,4 +183,13 @@
        </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>