zhangfeng
2023-07-19 2019d3ea4088eae51b5d52a2f6245841deb26781
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
package com.gk.hotwork.Domain.Vo;
 
import com.gk.hotwork.Domain.*;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
 
public class UserVo extends UserInfo {
    private String token;
 
    private Long tokenexpired;
 
    private Object roles;
 
    private String roleType;
 
    private Long logintime;
 
    private String auth;
 
    private Byte isMainCompany;
 
    private List<AuthorizationInfo> authorizationCodes;
    /** 是否通过考试 **/
    private Byte ispass;
    /** 考试有效期开始时间 **/
    private Date starttime;
    /** 考试有效期结束时间 **/
    private Date endtime;
 
    private Object exam;
 
    private String branch;
 
    private String number;
 
    private String code;
 
    private String roleSign;
 
    private String province;
 
    private String city;
 
    private String county;
 
    /**
     * 行政级别 1-省(自治区) 2-地(市、州) 3-区/县
     */
    private Integer executiveLevel;
    /**
     * 专业方向id
     */
    private Long specialityId;
    /**
     * 专业等级(1初级,2中级,3高级,4其他)
     */
    private Integer professionalLevel;
 
 
    private CompanyInfo companyInfo;
 
    private SpecialityInfo specialityInfo;
 
    @Override
    public String getProvince() {
        return province;
    }
 
    @Override
    public void setProvince(String province) {
        this.province = province;
    }
 
    @Override
    public String getCity() {
        return city;
    }
 
    @Override
    public void setCity(String city) {
        this.city = city;
    }
 
    @Override
    public String getCounty() {
        return county;
    }
 
    @Override
    public void setCounty(String county) {
        this.county = county;
    }
 
    @Override
    public Long getSpecialityId() {
        return specialityId;
    }
 
    @Override
    public void setSpecialityId(Long specialityId) {
        this.specialityId = specialityId;
    }
 
    @Override
    public Integer getProfessionalLevel() {
        return professionalLevel;
    }
 
    @Override
    public void setProfessionalLevel(Integer professionalLevel) {
        this.professionalLevel = professionalLevel;
    }
 
    @Override
    public Integer getExecutiveLevel() {
        return executiveLevel;
    }
 
    @Override
    public void setExecutiveLevel(Integer executiveLevel) {
        this.executiveLevel = executiveLevel;
    }
 
    public SpecialityInfo getSpecialityInfo() {
        return specialityInfo;
    }
 
    public void setSpecialityInfo(SpecialityInfo specialityInfo) {
        this.specialityInfo = specialityInfo;
    }
 
    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 Byte getIspass() {
        return ispass;
    }
 
    public void setIspass(Byte ispass) {
        this.ispass = ispass;
    }
 
    public Date getStarttime() {
        return starttime;
    }
 
    public void setStarttime(Date starttime) {
        this.starttime = starttime;
    }
 
    public Date getEndtime() {
        return endtime;
    }
 
    public void setEndtime(Date endtime) {
        this.endtime = endtime;
    }
 
    public Object getExam() {
        return exam;
    }
 
    public void setExam(Object exam) {
        this.exam = exam;
    }
 
    public Byte getIsMainCompany() {
        return isMainCompany;
    }
 
    public void setIsMainCompany(Byte isMainCompany) {
        this.isMainCompany = isMainCompany;
    }
 
    public String getBranch() {
        return branch;
    }
 
    public void setBranch(String branch) {
        this.branch = branch;
    }
 
    public String getNumber() {
        return number;
    }
 
    public void setNumber(String number) {
        this.number = number;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    @Override
    public String getRoleSign() {
        return roleSign;
    }
 
    @Override
    public void setRoleSign(String roleSign) {
        this.roleSign = roleSign;
    }
 
    public CompanyInfo getCompanyInfo() {
        return companyInfo;
    }
 
    public void setCompanyInfo(CompanyInfo companyInfo) {
        this.companyInfo = companyInfo;
    }
}