feat():limit添加空格

master
86191 2024-08-08 22:27:18 +08:00
parent 3012ece70b
commit 956a1dedd4
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,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);
}
}