feat():修改查询时sql空格问题

master
lwj 2024-08-08 21:18:43 +08:00
parent f8eb23c289
commit d7aafeb996
1 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,8 @@ public class OrderPayCustomerServiceImpl extends
orderPayService.selectOrderPayByAppCodeAndLimit(orderPayCustomer.getAppCode(), 5) orderPayService.selectOrderPayByAppCodeAndLimit(orderPayCustomer.getAppCode(), 5)
.stream() .stream()
.map(OrderPayInfo::buildCustomerOrderPaySimpleResp) .map(OrderPayInfo::buildCustomerOrderPaySimpleResp)
.toList())).toList(); .collect(Collectors.toList())))
.collect(Collectors.toList());
} }