This commit is contained in:
Lemon
2024-07-30 14:19:40 +08:00
44 changed files with 1065 additions and 271 deletions

View File

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

View File

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