From e3155bdcb11ca4e22d2bc9e54f96a1aa00c7ad4a Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Tue, 26 Mar 2024 12:28:45 +0800
Subject: [PATCH] 抽奖
---
src/main/resources/mapper/modules/MallOrderInfoMapper.xml | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
index 8316f7d..fb2e09e 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
@@ -72,6 +73,9 @@
<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}
</if>
--
Gitblit v1.9.1