| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 运营商标识 |
| | | */ |
| | | @NotNull |
| | | private String OperatorID; |
| | | @JsonProperty("OperatorID") |
| | | private String operatorID; |
| | | /** |
| | | * 成功状态 |
| | | * 0:成功 |
| | | * 1:失败 |
| | | */ |
| | | @NotNull |
| | | private Integer SuccStat; |
| | | @JsonProperty("SuccStat") |
| | | private Integer succStat; |
| | | /** |
| | | * 获取的凭证 |
| | | */ |
| | | @NotNull |
| | | private String AccessToken; |
| | | @JsonProperty("AccessToken") |
| | | private String accessToken; |
| | | /** |
| | | * 凭证有效期,秒 |
| | | */ |
| | | @NotNull |
| | | private Long TokenAvailableTime; |
| | | @JsonProperty("TokenAvailableTime") |
| | | private Long tokenAvailableTime; |
| | | /** |
| | | * 失败原因 |
| | | * 0:无 |
| | |
| | | * 3`9自定义 |
| | | */ |
| | | @NotNull |
| | | private Integer FailReason; |
| | | @JsonProperty("FailReason") |
| | | private Integer failReason; |
| | | } |