Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
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
package com.gk.firework.Domain.Vo;
 
import com.gk.firework.Domain.AuthorizationInfo;
import com.gk.firework.Domain.UserInfo;
 
import java.util.Date;
import java.util.List;
 
public class UserVo extends UserInfo {
    private String token;
 
    private Long tokenexpired;
 
    private Object roles;
 
    private String roleType;
 
    private Long logintime;
 
    private String auth;
 
    private String safetysupervision;
 
    private List<AuthorizationInfo> authorizationCodes;
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public Object getRoles() {
        return roles;
    }
 
    public void setRoles(Object roles) {
        this.roles = roles;
    }
 
    public Long getTokenexpired() {
        return tokenexpired;
    }
 
    public void setTokenexpired(Long tokenexpired) {
        this.tokenexpired = tokenexpired;
    }
 
    public String getRoleType() {
        return roleType;
    }
 
    public void setRoleType(String roleType) {
        this.roleType = roleType;
    }
 
    public Long getLogintime() {
        return logintime;
    }
 
    public void setLogintime(Long logintime) {
        this.logintime = logintime;
    }
 
    public String getAuth() {
        return auth;
    }
 
    public void setAuth(String auth) {
        this.auth = auth;
    }
 
    public List<AuthorizationInfo> getAuthorizationCodes() {
        return authorizationCodes;
    }
 
    public void setAuthorizationCodes(List<AuthorizationInfo> authorizationCodes) {
        this.authorizationCodes = authorizationCodes;
    }
 
    public String getSafetysupervision() {
        return safetysupervision;
    }
 
    public void setSafetysupervision(String safetysupervision) {
        this.safetysupervision = safetysupervision;
    }
}