update 预约充电记录

This commit is contained in:
Guoqs
2024-08-05 15:46:59 +08:00
parent 828d756363
commit 58d7974d3c
11 changed files with 111 additions and 24 deletions

View File

@@ -30,6 +30,8 @@ public class AppletTemplateMessageSendDTO implements Serializable {
private StopChargingMessage stopChargingMessage;
private StartUpResultMessage startUpResultMessage;
@Data
public static class StartChargingMessage {
@@ -100,4 +102,33 @@ public class AppletTemplateMessageSendDTO implements Serializable {
*/
private String chargingTime;
}
@Data
public static class StartUpResultMessage {
/**
* 开始时间
* time2
*/
private String startTime;
/**
* 预计结束时间
* time3
*/
private String endTime;
/**
* 启动结果
* phrase20
*/
private String startUpResult;
/**
* 失败原因
* thing21
*/
private String failReason;
}
}