master
Number7 2024-08-09 10:37:12 +08:00
parent c7256dbd07
commit 70c76d7ae0
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class OrderPayServiceImpl extends ServiceImpl<OrderPayMapper, OrderPayInf
LambdaQueryWrapper<OrderPayInfo> orderPayInfoQueryWrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<OrderPayInfo> orderPayInfoQueryWrapper = new LambdaQueryWrapper<>();
orderPayInfoQueryWrapper.eq(OrderPayInfo::getAppCode,appCode); orderPayInfoQueryWrapper.eq(OrderPayInfo::getAppCode,appCode);
orderPayInfoQueryWrapper.orderBy(true,false,OrderPayInfo::getCreateTime); orderPayInfoQueryWrapper.orderBy(true,false,OrderPayInfo::getCreateTime);
orderPayInfoQueryWrapper.last("limit"+limit); orderPayInfoQueryWrapper.last("limit "+limit);
List<OrderPayInfo> orderPayInfoList = this.list(orderPayInfoQueryWrapper); List<OrderPayInfo> orderPayInfoList = this.list(orderPayInfoQueryWrapper);
return this.list(orderPayInfoQueryWrapper); return this.list(orderPayInfoQueryWrapper);
} }