From 907e0128e6b5c8282e70e8377bba18b35cf4398c Mon Sep 17 00:00:00 2001 From: zhou-hongcheng <1064771933@qq.com> Date: Mon, 27 Apr 2026 14:24:01 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=AF=E7=BA=BF=E7=AE=A1=E7=90=86=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lineManagement/LineManagementMapper.xml | 33 +++---------------- 1 file changed, 5 insertions(+), 28 deletions(-) diff --git a/mhd_wms/src/main/resources/mapper/lineManagement/LineManagementMapper.xml b/mhd_wms/src/main/resources/mapper/lineManagement/LineManagementMapper.xml index d3c684eb2..e25182ace 100644 --- a/mhd_wms/src/main/resources/mapper/lineManagement/LineManagementMapper.xml +++ b/mhd_wms/src/main/resources/mapper/lineManagement/LineManagementMapper.xml @@ -33,28 +33,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" a.organization_name, a.top_organization_id, a.warehouse_id, - COALESCE(w.warehouse_name, a.warehouse_name) as warehouse_name, + a.warehouse_name, a.route_code, a.route_name, a.customer_json, - a.create_time, a.create_by, a.create_by_name, - a.update_time, + a.create_time, a.update_by, a.update_by_name, - a.del_flag, - a.service_items_code, - a.second_subject_code, - a.second_subject_name, - a.service_items_name, - a.bill_days, - a.bill_time, - a.salesman_name, - a.settlement_currency, - a.salesman_id - from lease a - LEFT JOIN warehouse w ON a.warehouse_id = w.warehouse_id AND w.del_flag = 1 + a.update_time, + a.del_flag + from line_management a @@ -97,19 +87,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and a.update_by_name like concat('%', #{updateByName}, '%') - - - and a.create_time >= #{createTimeStart} - - - and a.create_time <= #{createTimeEnd} - - - and a.update_time >= #{updateTimeStart} - - - and a.update_time <= #{updateTimeEnd} -