| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 充电订单号 |
| | | */ |
| | | @NotNull |
| | | private String StartChargeSeq; |
| | | @JsonProperty("StartChargeSeq") |
| | | private String startChargeSeq; |
| | | /** |
| | | * 充电设备接口编码 |
| | | */ |
| | | @NotNull |
| | | private String ConnectorID; |
| | | @JsonProperty("ConnectorID") |
| | | private String connectorID; |
| | | /** |
| | | * 确认结果 |
| | | * 0;成功 |
| | | * 1:争议交易 |
| | | * 2·99:自定义 |
| | | */ |
| | | private Integer ConfirmResult; |
| | | @JsonProperty("ConfirmResult") |
| | | private Integer confirmResult; |
| | | } |