From 36696cc01bfd0ade286a599a49e21b86cccc263e Mon Sep 17 00:00:00 2001
From: zhangback <zhangback@163.com>
Date: 星期一, 30 三月 2026 15:21:33 +0800
Subject: [PATCH] 新增线上配置

---
 tms/src/main/resources/mapper/tms/TmsVehicleMapper.xml |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/tms/src/main/resources/mapper/tms/TmsVehicleMapper.xml b/tms/src/main/resources/mapper/tms/TmsVehicleMapper.xml
index 0343dc5..2bff1f1 100644
--- a/tms/src/main/resources/mapper/tms/TmsVehicleMapper.xml
+++ b/tms/src/main/resources/mapper/tms/TmsVehicleMapper.xml
@@ -68,7 +68,9 @@
         <if test="serviceProviderId != null "> and thisTab.service_provider_id = #{serviceProviderId}</if>
         <if test="vehicleType != null  and vehicleType != ''"> and thisTab.vehicle_type = #{vehicleType}</if>
         <if test="serviceProviderName != null  and serviceProviderName != ''"> and  thisTab.service_provider_name like concat('%', #{serviceProviderName}, '%')</if>
-        <if test="licensePlate != null  and licensePlate != ''"> and thisTab.license_plate = #{licensePlate}</if>
+        <if test="licensePlate != null  and licensePlate != ''"> and thisTab.license_plate like concat('%', #{licensePlate}, '%')</if>
+        <if test="licenseHk != null  and licenseHk != ''"> and thisTab.license_hk like concat('%', #{licenseHk}, '%')</if>
+        <if test="licenseMo != null  and licenseMo != ''"> and thisTab.license_mo like concat('%', #{licenseMo}, '%')</if>
         <if test="hasTask != null "> and thisTab.has_task = #{hasTask}</if>
         <if test="vehicleUsageStatus != null "> and thisTab.vehicle_usage_status = #{vehicleUsageStatus}</if>
         <if test="status != null "> and thisTab.status = #{status}</if>

--
Gitblit v1.8.0