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 cn.mb.cloud.auth.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;
| }
|
|