| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 设备认证流水号 |
| | | */ |
| | | @NotNull |
| | | private String EquipAuthSeq; |
| | | @JsonProperty("EquipAuthSeq") |
| | | private String equipAuthSeq; |
| | | /** |
| | | * 充电设备接口编码 |
| | | */ |
| | | @NotNull |
| | | private String ConnectorID; |
| | | @JsonProperty("ConnectorID") |
| | | private String connectorID; |
| | | /** |
| | | * 操作结果 |
| | | * 0:成功 |
| | | * 1:失败 |
| | | */ |
| | | @NotNull |
| | | private Integer SuccStat; |
| | | @JsonProperty("SuccStat") |
| | | private Integer succStat; |
| | | /** |
| | | * 失败原因 |
| | | * 0:无 |
| | |
| | | * 3·99:自定义 |
| | | */ |
| | | @NotNull |
| | | private Integer FailReason; |
| | | @JsonProperty("FailReason") |
| | | private Integer failReason; |
| | | } |