From 2b8faec7cdb7de1abdc51b8096ecdcda635c4654 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Fri, 20 Sep 2024 15:17:02 +0800 Subject: [PATCH] 店铺申请排序 --- src/main/resources/mapper/modules/MallShopApplyMapper.xml | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mapper/modules/MallShopApplyMapper.xml b/src/main/resources/mapper/modules/MallShopApplyMapper.xml index f01c0a3..e269206 100644 --- a/src/main/resources/mapper/modules/MallShopApplyMapper.xml +++ b/src/main/resources/mapper/modules/MallShopApplyMapper.xml @@ -3,7 +3,6 @@ <mapper namespace="cc.mrbird.febs.mall.mapper.MallShopApplyMapper"> <select id="selectShopApplyInPage" resultType="cc.mrbird.febs.mall.entity.MallShopApply"> - select a.*,b.name vipName, b.invite_id inviteId from mall_shop_apply a inner join mall_member b on a.member_id=b.ID @@ -15,11 +14,13 @@ and a.status = #{record.status} </if> </where> + order by a.created_time desc </select> <select id="selectNewestApplyByMemberId" resultType="cc.mrbird.febs.mall.entity.MallShopApply"> - select *, max(created_time) from mall_shop_apply + select * from mall_shop_apply where member_id=#{memberId} - group by member_id + order by id desc + limit 1 </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1