字段名修改

This commit is contained in:
2024-10-15 16:29:48 +08:00
parent 14d88e8a63
commit e964d277db

View File

@@ -534,7 +534,7 @@ public class OrderService {
map.put("detailList", dataList);
map.put("orderInfo", orderInfo);
map.putAll(BeanUtil.beanToMap(orderVo, false, false));
map.put("createAt", DateUtil.formatDateTime(DateUtil.date(orderInfo.getCreatedAt())));
map.put("createdAt", DateUtil.formatDateTime(DateUtil.date(orderInfo.getCreatedAt())));
map.put("paidTime", orderInfo.getPaidTime() == null ? null : DateUtil.formatDateTime(DateUtil.date(orderInfo.getPaidTime())));
return map;
}