|  |  |  | 
|---|
|  |  |  | package com.ruoyi.integration.drainage.model; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.validation.constraints.NotNull; | 
|---|
|  |  |  | 
|---|
|  |  |  | * 充电订单号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull | 
|---|
|  |  |  | @JsonProperty("StartChargeSeq") | 
|---|
|  |  |  | private String startChargeSeq; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 充电订单状态 | 
|---|
|  |  |  | 
|---|
|  |  |  | * 5:未知 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull | 
|---|
|  |  |  | @JsonProperty("StartChargeSeqStat") | 
|---|
|  |  |  | private Integer startChargeSeqStat; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 充电设备接口编码 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull | 
|---|
|  |  |  | @JsonProperty("ConnectorID") | 
|---|
|  |  |  | private String connectorID; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 操作结果 | 
|---|
|  |  |  | 
|---|
|  |  |  | * 1:失败 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull | 
|---|
|  |  |  | @JsonProperty("SuccStat") | 
|---|
|  |  |  | private Integer succStat; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 失败原因 | 
|---|
|  |  |  | 
|---|
|  |  |  | * 4`9:自定义 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull | 
|---|
|  |  |  | @JsonProperty("FailReason") | 
|---|
|  |  |  | private Integer failReason; | 
|---|
|  |  |  | } | 
|---|