From f44187822ea6217070c0f6fc585c3feadea03cb1 Mon Sep 17 00:00:00 2001
From: chengf <2156125618@qq.com>
Date: 星期三, 13 八月 2025 09:30:18 +0800
Subject: [PATCH] 折扣逻辑修改2025/08/13

---
 java110-db/src/main/resources/mapper/store/ContractServiceDaoImplMapper.xml |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/store/ContractServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/store/ContractServiceDaoImplMapper.xml
index 6d31a8d..212021e 100755
--- a/java110-db/src/main/resources/mapper/store/ContractServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/store/ContractServiceDaoImplMapper.xml
@@ -157,10 +157,10 @@
         <if test="newBId != null and newBId != ''">
             ,t.b_id = #{newBId}
         </if>
-        <if test="aLink !=null and aLink != ''">
+        <if test="aLink !=null">
             , t.a_link= #{aLink}
         </if>
-        <if test="aContacts !=null and aContacts != ''">
+        <if test="aContacts !=null">
             , t.a_contacts= #{aContacts}
         </if>
         <if test="amount !=null and amount != ''">
@@ -178,13 +178,13 @@
         <if test="signingTime !=null and signingTime != ''">
             , t.signing_time= #{signingTime}
         </if>
-        <if test="bContacts !=null and bContacts != ''">
+        <if test="bContacts !=null">
             , t.b_contacts= #{bContacts}
         </if>
         <if test="partyA !=null and partyA != ''">
             , t.party_a= #{partyA}
         </if>
-        <if test="bLink !=null and bLink != ''">
+        <if test="bLink !=null">
             , t.b_link= #{bLink}
         </if>
         <if test="partyB !=null and partyB != ''">
@@ -229,10 +229,10 @@
         <if test="partyC !=null and partyC != ''">
             , t.party_c= #{partyC}
         </if>
-        <if test="cLink !=null and cLink != ''">
+        <if test="cLink !=null">
             , t.c_link= #{cLink}
         </if>
-        <if test="cContacts !=null and cContacts != ''">
+        <if test="cContacts !=null">
             , t.c_contacts= #{cContacts}
         </if>
         where 1=1

--
Gitblit v1.8.0