From 1c07a716a87fe386ff3a3492a659912981ea31a7 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 17 Jun 2022 16:58:47 +0800 Subject: [PATCH] Merge branch 'mall-amz' of http://120.27.238.55:7000/r/xc-mall into mall-amz --- src/main/resources/mapper/modules/MallActWinRecordMapper.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mapper/modules/MallActWinRecordMapper.xml b/src/main/resources/mapper/modules/MallActWinRecordMapper.xml index 6fc92fd..326c7ff 100644 --- a/src/main/resources/mapper/modules/MallActWinRecordMapper.xml +++ b/src/main/resources/mapper/modules/MallActWinRecordMapper.xml @@ -18,14 +18,14 @@ <where> <if test="record != null"> <if test="record.actId != null and record.actId != ''"> - and a.act_id = #{actId} + and a.act_id = #{record.actId} </if> <if test="record.memberId != null and record.memberId != ''"> - and a.member_id = #{memberId} + and a.member_id = #{record.memberId} </if> </if> </where> - order by a.act_start_time desc + order by a.create_time desc </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1