update 后管订单详情接口新增 车牌号码字段

This commit is contained in:
Lemon
2025-07-29 09:58:27 +08:00
parent b8811ac369
commit 0dcfb04420
2 changed files with 4 additions and 0 deletions

View File

@@ -414,6 +414,9 @@ public class OrderService {
if (orderBasicInfo.getVinCode() != null) {
order.setVinCode(orderBasicInfo.getVinCode());
}
if (orderBasicInfo.getPlateNumber() != null) {
order.setPlateNumber(orderBasicInfo.getPlateNumber());
}
String describe = orderBasicInfoService.transformOrderStatusDescribe(orderBasicInfo.getOrderStatus(), orderBasicInfo.getPayStatus());
order.setOrderStatusDescribe(describe);
order.setStartTime(DateUtils.formatDateTime(orderBasicInfo.getChargeStartTime()));

View File

@@ -60,6 +60,7 @@ public class OrderDetailInfoVO {
private String orderStatusDescribe; // 订单状态描述
private String logicCard; // 卡号
private String vinCode; // vin号
private String plateNumber; // 车牌号
private String startTime; // 充电开始时间
private String endTime; // 充电结束时间
private String stopReasonCode; // 停止原因码