1.提现列表倒序

This commit is contained in:
张松 2025-01-06 13:05:08 +08:00
parent b850045f72
commit c03ace8658
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public class CashOutServiceImpl extends ServiceImpl<CashOutDao, CashOut> impleme
}
PageHelper.startPage(page, limit);
List<CashOut> cashOutList = list(queryWrapper);
List<CashOut> cashOutList = list(queryWrapper.orderByDesc(CashOut::getId));
if (!isApp) {
ArrayList<Long> userIdList = new ArrayList<>();