feat():补齐订单客户相关API接口

master
LQS 2024-08-09 09:48:32 +08:00
parent 1c7125eb3f
commit 3465b4805d
1 changed files with 1 additions and 1 deletions

View File

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