| 1234567891011121314151617181920212223242526272829303132 |
- package com.zsElectric.boot.charging.vo;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import lombok.experimental.Accessors;
- @Data
- @Accessors(chain = true)
- @Schema(description = "设备认证响应VO")
- public class EquipmentAuthResponseVO {
- @Schema(description = "设备认证流水号(格式:运营商ID+唯一编号)",
- example = "123456789201805071630123456")
- private String equipAuthSeq;
- @Schema(description = "充电设备接口编码",
- example = "3702120244102_1")
- private String connectorID;
- @Schema(description = "操作结果(0-成功,1-失败)",
- example = "0",
- allowableValues = {"0", "1"})
- private Integer succStat;
- @Schema(description = "失败原因(0-无,1-此设备尚未插枪,2-设备检测失败,其它-自定义)",
- example = "0")
- private Integer failReason;
- @Schema(description = "失败原因描述",
- example = "无错误")
- private String failReasonMsg;
- }
|