From fc236fc10f2bda6aa9419753c5cb284155026fa2 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期一, 19 一月 2026 18:00:04 +0800
Subject: [PATCH] 新增位运算
---
service/src/main/resources/mapper/cwgl/FundFlowClaimDetailMapper.xml | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/service/src/main/resources/mapper/cwgl/FundFlowClaimDetailMapper.xml b/service/src/main/resources/mapper/cwgl/FundFlowClaimDetailMapper.xml
index 83cfbcd..f4a36c7 100644
--- a/service/src/main/resources/mapper/cwgl/FundFlowClaimDetailMapper.xml
+++ b/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>
\ No newline at end of file
--
Gitblit v1.8.0