充电桩通信日志, 展示停止原因

This commit is contained in:
Guoqs
2024-11-25 09:50:29 +08:00
parent 7fd5bf6eca
commit 186b7beb70

View File

@@ -225,12 +225,16 @@ public class PileMsgRecordServiceImpl implements PileMsgRecordService {
// 枪口编号
String pileConnectorCode = jsonObject.getString("pileSn") + jsonObject.getString("connectorCode");
String stopReason = jsonObject.getString("stopReasonMsg");
return "订单号:" + orderCode + ", " +
"交易流水号:" + transactionCode + ", " +
"枪口编号:" + pileConnectorCode + ", " +
"充电度数:" + totalElectricity + ", " +
"消费金额:" + consumptionAmount + ", " +
"开始时间:" + startTime + ", " +
"结束时间:" + endTime;
"结束时间:" + endTime + ", " +
"停止原因:" + stopReason
;
}
}