update 预约充电

This commit is contained in:
Guoqs
2024-07-26 09:52:03 +08:00
parent 371b3c34e5
commit 44d276fbf4
10 changed files with 106 additions and 17 deletions

View File

@@ -7,14 +7,19 @@ import lombok.Setter;
@Getter
@Setter
@Builder
public class PileReservedVO {
private String reservedId;
public class PileReservationInfoVO {
// private String reservationId;
/**
* 充电桩编号
*/
private String pileSn;
/**
* 充电桩枪口编号
*/
private String pileConnectorCode;
/**
* 预约开始时间
*/
@@ -28,7 +33,7 @@ public class PileReservedVO {
/**
* 周期性预约的频率对于单次预约该字段可以为 NULL可能的值包括 daily, weekly, monthly
*/
private String freq;
// private String freq;
/**
* 状态0-未生效1-生效

View File

@@ -45,4 +45,14 @@ public class PersonPileRealTimeVO {
* 实时功率
*/
private String instantPower;
/**
* 枪口状态
*/
private String status;
/**
* soc
*/
private String soc;
}