liujie
2023-10-26 e030255c23c7ba3e2cbad1036a810d6d72fa864f
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
package com.dsh.guns.modular.system.warpper;
 
import lombok.Data;
 
@Data
public class OauthToken {
    /**
     * token
     */
    private String access_token;
    /**
     * token类型
     */
    private String token_type;
    /**
     * 刷新token的凭证
     */
    private String refresh_token;
    /**
     * 有效期(秒)
     */
    private Long expires_in;
    /**
     * 权限
     */
    private String scope;
    /**
     * token解码jti
     */
    private String jti;
}