AccountInterfaceVO.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.hr.vo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.time.LocalDateTime;
  7. @Data
  8. public class AccountInterfaceVO implements Serializable {
  9. @Schema(description = "id")
  10. private Long id;
  11. @Schema(description = "账号NO")
  12. private String accNo;
  13. @Schema(description = "接口ID")
  14. private Long interfaceId;
  15. @Schema(description = "接口名称")
  16. private String interfaceName;
  17. @Schema(description = "接口编码")
  18. private String interfaceCode;
  19. @Schema(description = "厂商")
  20. private String manufacturer;
  21. @Schema(description = "状态")
  22. private String status;
  23. @Schema(description = "备注")
  24. private String remark;
  25. @Schema(description = "是否回调")
  26. private Boolean callback;
  27. @Schema(description = "回调地址")
  28. private String callbackUrl;
  29. @Schema(description = "回调次数")
  30. private Integer callbackNum;
  31. @Schema(description = "secret")
  32. private String secret;
  33. @Schema(description = "token")
  34. private String token;
  35. @Schema(description = "创建人")
  36. private String addUserName;
  37. @Schema(description = "创建时间")
  38. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  39. private LocalDateTime addTime;
  40. }