xuekang
2024-05-10 edf3b7fde038fcf3e6d86b8b4b88c2ff6f9014cf
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
package org.dromara.system.api.domain.vo;
 
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.List;
 
 
/**
 * 授权管理视图对象 sys_client
 *
 * @author Michelle.Chung
 */
@Data
public class RemoteClientVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private Long id;
 
    /**
     * 客户端id
     */
    private String clientId;
 
    /**
     * 客户端key
     */
    private String clientKey;
 
    /**
     * 客户端秘钥
     */
    private String clientSecret;
 
    /**
     * 授权类型
     */
    private List<String> grantTypeList;
 
    /**
     * 授权类型
     */
    private String grantType;
 
    /**
     * 设备类型
     */
    private String deviceType;
 
    /**
     * token活跃超时时间
     */
    private Long activeTimeout;
 
    /**
     * token固定超时时间
     */
    private Long timeout;
 
    /**
     * 状态(0正常 1停用)
     */
    private String status;
 
 
}