From 7558a21c1ae1b48b0888f3e3906eb4ba6a68b06f Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期四, 03 八月 2023 11:30:34 +0800 Subject: [PATCH] 修改bug --- UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/dao/mapping/OrderLogisticsMapper.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/dao/mapping/OrderLogisticsMapper.xml b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/dao/mapping/OrderLogisticsMapper.xml index efa2b4c..9b7c802 100644 --- a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/dao/mapping/OrderLogisticsMapper.xml +++ b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/dao/mapping/OrderLogisticsMapper.xml @@ -167,7 +167,7 @@ select (payMoney * -1) as money, DATE_FORMAT(insertTime, '%Y-%m-%d %H:%i') as time, - if(type = 4, '同城小件物流订单', '跨城小件物流') as name, + if(type = 4, '包裹订单', '跨城小件物流') as name, UNIX_TIMESTAMP(insertTime) as insertTime from t_order_logistics where payMoney != 0 and userId = #{uid} and state not in (7, 10) @@ -176,7 +176,7 @@ select (a.payMoney * -1) as money, DATE_FORMAT(a.payTime, '%Y-%m-%d %H:%i') as time, - if(b.type = 4, '同城小件物流订单', '跨城小件物流') as name, + if(b.type = 4, '包裹订单', '跨城小件物流') as name, UNIX_TIMESTAMP(a.payTime) as insertTime from t_order_logistics_spread a left join t_order_logistics b on (a.orderLogisticsId = b.id) @@ -193,7 +193,7 @@ startAddress as startAddress, endAddress as endAddress, payMoney as payMoney, - if(type = 4, '同城小件物流订单', '跨城小件物流订单') as orderName, + if(type = 4, '包裹流订单', '跨城小件物流订单') as orderName, if(invoiceId is null, 1, 2) as invoice, unix_timestamp(insertTime) as insertTime, `type` as orderType -- Gitblit v1.7.1