序列号排序

This commit is contained in:
2023-11-29 16:01:35 +08:00
parent ba20489d75
commit df0774ac5d

View File

@@ -294,7 +294,7 @@ public class LpkGiftCardService extends MybatisBaseService<LpkGiftCardMapper, Lp
if (StringUtils.isNotBlank(query.getSid())) {
qw.eq("recordSid", query.getSid());
}
qw.orderByDesc("createTime");
qw.orderByDesc("serialNumber");
IPage<LpkGiftCard> page = PagerUtil.queryToPage(pq);
IPage<LpkGiftCardListVo> pagging = baseMapper.recordDetails(page, qw);
PagerVo<LpkGiftCardListVo> p = PagerUtil.pageToVo(pagging, null);