EquipmentAuthResponseVO.java 1018 B

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