From 3849263b31a16a91ff08acaa42786ecfde76f33c Mon Sep 17 00:00:00 2001
From: zhangback <zhangback@163.com>
Date: 星期四, 27 十一月 2025 20:18:08 +0800
Subject: [PATCH] 提交
---
tms/src/main/resources/mapper/tms/TmsConsignorMapper.xml | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/tms/src/main/resources/mapper/tms/TmsConsignorMapper.xml b/tms/src/main/resources/mapper/tms/TmsConsignorMapper.xml
index 6794210..d137968 100644
--- a/tms/src/main/resources/mapper/tms/TmsConsignorMapper.xml
+++ b/tms/src/main/resources/mapper/tms/TmsConsignorMapper.xml
@@ -48,11 +48,19 @@
<if test="customerSysCode != null and customerSysCode != ''"> and thisTab.customer_sys_code = #{customerSysCode}</if>
<if test="consignorType != null "> and thisTab.consignor_type = #{consignorType}</if>
<if test="contactName != null and contactName != ''"> and thisTab.contact_name like concat('%', #{contactName}, '%')</if>
+ <if test="contactPhone != null and contactPhone != ''"> and thisTab.contact_phone = #{contactPhone}</if>
+ <if test="contactEmail != null and contactEmail != ''"> and thisTab.contact_email = #{contactEmail}</if>
+ <if test="countryId != null and countryId != ''"> and thisTab.country_id = #{countryId}</if>
+ <if test="provinceId != null and provinceId != ''"> and thisTab.province_id = #{provinceId}</if>
+ <if test="cityId != null and cityId != ''"> and thisTab.city_id = #{cityId}</if>
+ <if test="districtId != null and districtId != ''"> and thisTab.district_id = #{districtId}</if>
+ <if test="streetId != null and streetId != ''"> and thisTab.street_id = #{streetId}</if>
+ <if test="addressDetail != null and addressDetail != ''"> and thisTab.address_detail = #{addressDetail}</if>
<if test="dispatchTransportArea != null and dispatchTransportArea != ''"> and thisTab.dispatch_transport_area = #{dispatchTransportArea}</if>
+ <if test="mapLocation != null and mapLocation != ''"> and thisTab.map_location = #{mapLocation}</if>
<if test="status != null "> and thisTab.status = #{status}</if>
- <if test="updateBy != null and updateBy != ''"> and thisTab.update_by = #{updateBy}</if>
- <if test="updateTime != null "> and thisTab.update_time = #{updateTime}</if>
<if test="regionLabel != null and regionLabel != ''"> and thisTab.region_label = #{regionLabel}</if>
+ <if test="electronicFenceRange != null "> and thisTab.electronic_fence_range = #{electronicFenceRange}</if>
</sql>
<!--鏌ヨ-->
--
Gitblit v1.8.0