From 35fc2330421c1ea217f00e0cb973c1b30e2363c0 Mon Sep 17 00:00:00 2001
From: chengf <cgf12138@163.com>
Date: 星期三, 10 九月 2025 09:43:54 +0800
Subject: [PATCH] 合同校验0910
---
java110-db/src/main/resources/mapper/store/ContractPartyaServiceDaoImplMapper.xml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/store/ContractPartyaServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/store/ContractPartyaServiceDaoImplMapper.xml
index 2a0a40b..ce8200c 100644
--- a/java110-db/src/main/resources/mapper/store/ContractPartyaServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/store/ContractPartyaServiceDaoImplMapper.xml
@@ -16,7 +16,7 @@
from contract_partya t
where 1 =1
<if test="partyA !=null and partyA != ''">
- and t.party_a like concat('%',#{partyA},'%')
+ and t.party_a = #{partyA}
</if>
<if test="isPartyA !=null and isPartyA != ''">
and t.party_a = #{isPartyA}
@@ -84,7 +84,7 @@
from contract_partya t
where 1 =1
<if test="partyA !=null and partyA != ''">
- and t.party_a like concat('%',#{partyA},'%')
+ and t.party_a = #{partyA}
</if>
<if test="aLink !=null and aLink != ''">
and t.a_link= #{aLink}
--
Gitblit v1.8.0