From 54e07b96bd7fdae9915fcf06de2a16bcb613aa74 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期五, 06 三月 2026 16:28:37 +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