ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package jnpf.base.model.InterfaceOauth;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jnpf.base.model.datainterface.DataInterfaceVo;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
/**
 * 接口认证vo
 *
 * @author JNPF开发平台组
 * @version V3.4.2
 * @copyright 引迈信息技术有限公司
 * @date 2022/6/8 10:16
 */
@Data
public class InterfaceIdentVo {
 
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "应用id")
    private String appId;
 
    @Schema(description = "应用名称")
    private String appName;
 
    @Schema(description = "应用秘钥")
    private String appSecret;
 
    @Schema(description = "验证签名")
    private Integer verifySignature;
 
    @Schema(description = "使用期限")
    private Date usefulLife;
 
    @Schema(description = "白名单")
    private String whiteList;
 
    @Schema(description = "黑名单")
    private String blackList;
 
    @Schema(description = "排序")
    private Long sortCode;
 
    @Schema(description = "状态")
    private Integer enabledMark;
 
    @Schema(description = "说明")
    private String description;
 
    @Schema(description = "创建人id")
    private String creatorUserId;
 
    @Schema(description = "创建人")
    private String creatorUser;
 
    @Schema(description = "创建时间")
    private Long creatorTime;
 
    @Schema(description = "修改人id")
    private String lastModifyUserId;
 
    @Schema(description = "修改人")
    private String lastModifyUser;
 
    @Schema(description = "修改时间")
    private Long lastModifyTime;
 
    @Schema(description = "租户id")
    private String tenantId;
 
 
 
    /**
     * 接口列表
     */
    @Schema(description = "接口列表字符串")
    private String dataInterfaceIds;
    /**
     * 接口列表
     */
    @Schema(description = "接口列表")
    private List<DataInterfaceVo> list;
 
    @Schema(description = "授权用户列表")
    private List<InterfaceUserVo> userList;
}