订单详情返回下单时间

This commit is contained in:
2024-09-26 11:37:20 +08:00
parent 1e92ffdc86
commit 2abf87e479

View File

@@ -484,6 +484,7 @@ public class OrderService {
groupedByPlaceNum.forEach((k, v) -> {
HashMap<String, Object> item = new HashMap<>();
item.put("placeNum", k);
item.put("placeTime", v.isEmpty() ? null : v.get(0).getUpdateTime());
item.put("info", v);
dataList.add(item);
});