| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.hr.vo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- @Data
- public class AccountInterfaceVO implements Serializable {
- @Schema(description = "id")
- private Long id;
- @Schema(description = "账号NO")
- private String accNo;
- @Schema(description = "接口ID")
- private Long interfaceId;
- @Schema(description = "接口名称")
- private String interfaceName;
- @Schema(description = "接口编码")
- private String interfaceCode;
- @Schema(description = "厂商")
- private String manufacturer;
- @Schema(description = "状态")
- private String status;
- @Schema(description = "备注")
- private String remark;
- @Schema(description = "是否回调")
- private Boolean callback;
- @Schema(description = "回调地址")
- private String callbackUrl;
- @Schema(description = "回调次数")
- private Integer callbackNum;
- @Schema(description = "secret")
- private String secret;
- @Schema(description = "token")
- private String token;
- @Schema(description = "创建人")
- private String addUserName;
- @Schema(description = "创建时间")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private LocalDateTime addTime;
- }
|