1.手机端提现列表增加类型限制查询

This commit is contained in:
张松 2025-01-06 14:12:19 +08:00
parent c8d734a802
commit 33b350e7b6
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.orderByDesc(CashOut::getId));
List<CashOut> cashOutList = list(queryWrapper.eq(CashOut::getUserType, 1).orderByDesc(CashOut::getId));
if (!isApp) {
ArrayList<Long> userIdList = new ArrayList<>();