mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-09 12:30:07 +08:00
update 后管订单详情接口新增 车牌号码字段
This commit is contained in:
@@ -414,6 +414,9 @@ public class OrderService {
|
|||||||
if (orderBasicInfo.getVinCode() != null) {
|
if (orderBasicInfo.getVinCode() != null) {
|
||||||
order.setVinCode(orderBasicInfo.getVinCode());
|
order.setVinCode(orderBasicInfo.getVinCode());
|
||||||
}
|
}
|
||||||
|
if (orderBasicInfo.getPlateNumber() != null) {
|
||||||
|
order.setPlateNumber(orderBasicInfo.getPlateNumber());
|
||||||
|
}
|
||||||
String describe = orderBasicInfoService.transformOrderStatusDescribe(orderBasicInfo.getOrderStatus(), orderBasicInfo.getPayStatus());
|
String describe = orderBasicInfoService.transformOrderStatusDescribe(orderBasicInfo.getOrderStatus(), orderBasicInfo.getPayStatus());
|
||||||
order.setOrderStatusDescribe(describe);
|
order.setOrderStatusDescribe(describe);
|
||||||
order.setStartTime(DateUtils.formatDateTime(orderBasicInfo.getChargeStartTime()));
|
order.setStartTime(DateUtils.formatDateTime(orderBasicInfo.getChargeStartTime()));
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ public class OrderDetailInfoVO {
|
|||||||
private String orderStatusDescribe; // 订单状态描述
|
private String orderStatusDescribe; // 订单状态描述
|
||||||
private String logicCard; // 卡号
|
private String logicCard; // 卡号
|
||||||
private String vinCode; // vin号
|
private String vinCode; // vin号
|
||||||
|
private String plateNumber; // 车牌号
|
||||||
private String startTime; // 充电开始时间
|
private String startTime; // 充电开始时间
|
||||||
private String endTime; // 充电结束时间
|
private String endTime; // 充电结束时间
|
||||||
private String stopReasonCode; // 停止原因码
|
private String stopReasonCode; // 停止原因码
|
||||||
|
|||||||
Reference in New Issue
Block a user