Commit 94868831 authored by Smile's avatar Smile

feat:订单动态倒序排列

parent 6f3e1ae4
......@@ -806,7 +806,7 @@ public class OrderQueryServiceImpl implements OrderQueryService {
// 订单的到仓时间 去动态值 businessTime
List<OrderTimeDO> orderTimeList =
orderTimeMapper.selectList(
new LambdaQueryWrapper<OrderTimeDO>().eq(OrderTimeDO::getOrderId, orderId).orderByDesc(OrderTimeDO::getId));
new LambdaQueryWrapper<OrderTimeDO>().eq(OrderTimeDO::getOrderId, orderId).orderByAsc(OrderTimeDO::getId));
if (CollectionUtil.isNotEmpty(orderTimeList)) {
// getDaoCanTiam(orderTimeList);
dto.setOrderTimeVOList(OrderTimeConvert.INSTANCE.convertList(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment