From ffecf9785a3b3e8586854251e92ca4040f1279a5 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 17 Jun 2022 17:54:04 +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..9971138 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.created_time desc </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1