From 6edb8bf03be974dc8d03f497e4c64fca1aba524d Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 07 Sep 2023 18:38:48 +0800 Subject: [PATCH] 支付宝支付 --- src/main/resources/mapper/modules/MallOrderInfoMapper.xml | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml index 8316f7d..8136f36 100644 --- a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml +++ b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml @@ -47,6 +47,7 @@ select a.*, b.name memberName, b.bind_phone memberBindPhone, + b.account_login accountLogin, b.phone memberPhone, c.goods_name from mall_order_item c @@ -71,6 +72,9 @@ </if> <if test="record.name != null and record.name != ''"> and b.name like CONCAT('%', CONCAT(#{record.name}, '%')) + </if> + <if test="record.accountLogin != null and record.accountLogin != ''"> + and b.account_login like CONCAT('%', CONCAT(#{record.accountLogin}, '%')) </if> <if test="record.startTime != null and record.startTime != ''"> and a.order_time >= #{record.startTime} @@ -158,7 +162,7 @@ and a.status = #{record.status} </if> <if test="record.status == 5"> - and a.status = 7 + and a.status = 5 </if> <if test="record.memberId != null"> and a.member_id=#{record.memberId} -- Gitblit v1.9.1