用户管理 排序

This commit is contained in:
wangw 2024-08-17 14:15:12 +08:00 committed by 牛叉闪闪
parent ff07ab528e
commit e3f68dc486
1 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ public interface ShopUserMapper extends BaseMapper<TbShopUser> {
"AND su.is_vip=#{isVip} " + "AND su.is_vip=#{isVip} " +
"</if>" + "</if>" +
"</where>" + "</where>" +
"order by su.created_at" +
"</script>") "</script>")
IPage<ShopUserInfoVo> queryUser(TbShopUserQueryCriteria param, Integer isVip, Page pageInfo); IPage<ShopUserInfoVo> queryUser(TbShopUserQueryCriteria param, Integer isVip, Page pageInfo);