| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 业务策略查询流水号 |
| | | */ |
| | | @NotNull |
| | | private String EquipBizSeq; |
| | | @JsonProperty("EquipBizSeq") |
| | | private String equipBizSeq; |
| | | /** |
| | | * 充电设备接口编码 |
| | | */ |
| | | @NotNull |
| | | private String ConnectorID; |
| | | @JsonProperty("ConnectorID") |
| | | private String connectorID; |
| | | /** |
| | | * 操作结果 |
| | | * 0:成功 |
| | | * 1:失败 |
| | | */ |
| | | @NotNull |
| | | private Integer SuccStat; |
| | | @JsonProperty("SuccStat") |
| | | private Integer succStat; |
| | | /** |
| | | * 失败原因 |
| | | * 0:无 |
| | | * 1:此充电桩业务策略不存在 |
| | | */ |
| | | @NotNull |
| | | private Integer FailReason; |
| | | @JsonProperty("FailReason") |
| | | private Integer failReason; |
| | | /** |
| | | * 时段数N |
| | | * 0`32 |
| | | */ |
| | | @NotNull |
| | | private Integer SumPeriod; |
| | | @JsonProperty("SumPeriod") |
| | | private Integer sumPeriod; |
| | | /** |
| | | * 计策信息 |
| | | */ |
| | | @NotNull |
| | | private List<PolicyInfo> PolicyInfos; |
| | | @JsonProperty("PolicyInfos") |
| | | private List<PolicyInfo> policyInfos; |
| | | |
| | | } |