liusheng
2025-08-12 f80b92babaaadb6386cbbbe2234ff1c66f8267f9
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
package com.smartor.domain;
 
public class SSOTokenResponse {
    private String id_token;
    private String access_token;
    private Integer expires_in;
    private String token_type;
    private String scope;
 
    // getter和setter方法
    public String getId_token() {
        return id_token;
    }
 
    public void setId_token(String id_token) {
        this.id_token = id_token;
    }
 
    public String getAccess_token() {
        return access_token;
    }
 
    public void setAccess_token(String access_token) {
        this.access_token = access_token;
    }
 
    public Integer getExpires_in() {
        return expires_in;
    }
 
    public void setExpires_in(Integer expires_in) {
        this.expires_in = expires_in;
    }
 
    public String getToken_type() {
        return token_type;
    }
 
    public void setToken_type(String token_type) {
        this.token_type = token_type;
    }
 
    public String getScope() {
        return scope;
    }
 
    public void setScope(String scope) {
        this.scope = scope;
    }
}