wujianwei
2026-03-20 1e89b00b0919a19504f32b56fb1ef80298799ec4
service/src/main/resources/mapper/cwgl/FundFlowClaimDetailMapper.xml
@@ -102,11 +102,11 @@
    <insert id="insertFundFlowClaimDetailBatch" parameterType="java.util.List"  useGeneratedKeys="true" keyProperty="id">
        insert into fund_flow_claim_detail
        <trim prefix="(" suffix=") values" suffixOverrides=",">
            id,fund_flow_id,bill_no,related_company_type,related_company_name,bill_amount,bill_pending_amount,claim_amount,claim_date,remarks,create_by,create_time,update_by,update_time,del_flag,
            fund_flow_id,bill_no,related_company_type,related_company_name,bill_amount,bill_pending_amount,claim_amount,claim_date,remarks,create_by,create_time,update_by,update_time,del_flag,
        </trim>
        <foreach item="item" index="index" collection="list" separator=",">
            <trim prefix="(" suffix=") " suffixOverrides=",">
                #{item.id},#{item.fundFlowId},#{item.billNo},#{item.relatedCompanyType},#{item.relatedCompanyName},#{item.billAmount},#{item.billPendingAmount},#{item.claimAmount},#{item.claimDate},#{item.remarks},#{item.createBy},#{item.createTime},#{item.updateBy},#{item.updateTime},#{item.delFlag},
                #{item.fundFlowId},#{item.billNo},#{item.relatedCompanyType},#{item.relatedCompanyName},#{item.billAmount},#{item.billPendingAmount},#{item.claimAmount},#{item.claimDate},#{item.remarks},#{item.createBy},#{item.createTime},#{item.updateBy},#{item.updateTime},#{item.delFlag},
            </trim>
        </foreach>
    </insert>
@@ -166,5 +166,8 @@
            #{id}
        </foreach>
    </delete>
    <delete id="deleteFundFlowClaimDetailByFundFlowId" parameterType="Integer">
        delete from fund_flow_claim_detail where fund_flow_id = #{fundFlowId}
    </delete>
</mapper>