DELL
2024-08-29 abd9823f366dc3efc33446fa4e98f7cc278f1d78
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
package com.fgkj.pojo;
 
import lombok.Data;
 
import java.util.Date;
 
@Data
public class User {
 
    private Integer uId;
    private String uSnId;       //'123456',
    private String uName;
    private String uShenFenId;
    private String uEmployeeId;
    private String uTelephone;
    private String uMobilephone;
    private String uEmail;
    private String uAddr;
    private Date uBirthDay;
    private Date uAccessionDay;
    private String uSex;
    private String uDepartment;
    private String uProTitle;
    private String uAuthority;
    private String uJobGroup;
    private String uDuties;
    private String uTasks;
    private String uBaojiUsr;
    private String uNote;
    private String upassword;
    private String uPubKeyX;
    private String uPubKeyY;
    private String uKey_ID;
    private Integer face_id;
    private String license;
    private Integer login_type;
    private Integer uRole;                  //'告警角色:0-管理员、1-维护组长、2-维护组员',
    private Integer type;                   //'账号类型 1:长期,2:临时 ',
    private Integer status;                 //'账号状态 1:激活,2:休眠,3:锁定,0:注销',
    private Date expiration_time;           //'临时账号的到期时间',
    private Date last_login_time;           //'最后登录时间',
    private Date password_update_time;      //'密码更新时间,至少3个月一次',
    private Date create_time;               //'创建时间',
    private Date lock_time;                 //'账号锁定时间',
    private String visit_time;              //'允许访问时间区间',
    private String visit_ip;                //'允许访问ip',
 
    public Date getCreate_time() {
        return create_time;
    }
 
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
 
    public Date getExpiration_time() {
        return expiration_time;
    }
 
    public void setExpiration_time(Date expiration_time) {
        this.expiration_time = expiration_time;
    }
 
    public Integer getFace_id() {
        return face_id;
    }
 
    public void setFace_id(Integer face_id) {
        this.face_id = face_id;
    }
 
    public Date getLast_login_time() {
        return last_login_time;
    }
 
    public void setLast_login_time(Date last_login_time) {
        this.last_login_time = last_login_time;
    }
 
    public String getLicense() {
        return license;
    }
 
    public void setLicense(String license) {
        this.license = license;
    }
 
    public Date getLock_time() {
        return lock_time;
    }
 
    public void setLock_time(Date lock_time) {
        this.lock_time = lock_time;
    }
 
    public Integer getLogin_type() {
        return login_type;
    }
 
    public void setLogin_type(Integer login_type) {
        this.login_type = login_type;
    }
 
    public Date getPassword_update_time() {
        return password_update_time;
    }
 
    public void setPassword_update_time(Date password_update_time) {
        this.password_update_time = password_update_time;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Date getuAccessionDay() {
        return uAccessionDay;
    }
 
    public void setuAccessionDay(Date uAccessionDay) {
        this.uAccessionDay = uAccessionDay;
    }
 
    public String getuAddr() {
        return uAddr;
    }
 
    public void setuAddr(String uAddr) {
        this.uAddr = uAddr;
    }
 
    public String getuAuthority() {
        return uAuthority;
    }
 
    public void setuAuthority(String uAuthority) {
        this.uAuthority = uAuthority;
    }
 
    public String getuBaojiUsr() {
        return uBaojiUsr;
    }
 
    public void setuBaojiUsr(String uBaojiUsr) {
        this.uBaojiUsr = uBaojiUsr;
    }
 
    public Date getuBirthDay() {
        return uBirthDay;
    }
 
    public void setuBirthDay(Date uBirthDay) {
        this.uBirthDay = uBirthDay;
    }
 
    public String getuDepartment() {
        return uDepartment;
    }
 
    public void setuDepartment(String uDepartment) {
        this.uDepartment = uDepartment;
    }
 
    public String getuDuties() {
        return uDuties;
    }
 
    public void setuDuties(String uDuties) {
        this.uDuties = uDuties;
    }
 
    public String getuEmail() {
        return uEmail;
    }
 
    public void setuEmail(String uEmail) {
        this.uEmail = uEmail;
    }
 
    public String getuEmployeeId() {
        return uEmployeeId;
    }
 
    public void setuEmployeeId(String uEmployeeId) {
        this.uEmployeeId = uEmployeeId;
    }
 
    public Integer getuId() {
        return uId;
    }
 
    public void setuId(Integer uId) {
        this.uId = uId;
    }
 
    public String getuJobGroup() {
        return uJobGroup;
    }
 
    public void setuJobGroup(String uJobGroup) {
        this.uJobGroup = uJobGroup;
    }
 
    public String getuKey_ID() {
        return uKey_ID;
    }
 
    public void setuKey_ID(String uKey_ID) {
        this.uKey_ID = uKey_ID;
    }
 
    public String getuMobilephone() {
        return uMobilephone;
    }
 
    public void setuMobilephone(String uMobilephone) {
        this.uMobilephone = uMobilephone;
    }
 
    public String getuName() {
        return uName;
    }
 
    public void setuName(String uName) {
        this.uName = uName;
    }
 
    public String getuNote() {
        return uNote;
    }
 
    public void setuNote(String uNote) {
        this.uNote = uNote;
    }
 
    public String getUpassword() {
        return upassword;
    }
 
    public void setUpassword(String upassword) {
        this.upassword = upassword;
    }
 
    public String getuProTitle() {
        return uProTitle;
    }
 
    public void setuProTitle(String uProTitle) {
        this.uProTitle = uProTitle;
    }
 
    public String getuPubKeyX() {
        return uPubKeyX;
    }
 
    public void setuPubKeyX(String uPubKeyX) {
        this.uPubKeyX = uPubKeyX;
    }
 
    public String getuPubKeyY() {
        return uPubKeyY;
    }
 
    public void setuPubKeyY(String uPubKeyY) {
        this.uPubKeyY = uPubKeyY;
    }
 
    public Integer getuRole() {
        return uRole;
    }
 
    public void setuRole(Integer uRole) {
        this.uRole = uRole;
    }
 
    public String getuSex() {
        return uSex;
    }
 
    public void setuSex(String uSex) {
        this.uSex = uSex;
    }
 
    public String getuShenFenId() {
        return uShenFenId;
    }
 
    public void setuShenFenId(String uShenFenId) {
        this.uShenFenId = uShenFenId;
    }
 
    public String getuSnId() {
        return uSnId;
    }
 
    public void setuSnId(String uSnId) {
        this.uSnId = uSnId;
    }
 
    public String getuTasks() {
        return uTasks;
    }
 
    public void setuTasks(String uTasks) {
        this.uTasks = uTasks;
    }
 
    public String getuTelephone() {
        return uTelephone;
    }
 
    public void setuTelephone(String uTelephone) {
        this.uTelephone = uTelephone;
    }
 
    public String getVisit_ip() {
        return visit_ip;
    }
 
    public void setVisit_ip(String visit_ip) {
        this.visit_ip = visit_ip;
    }
 
    public String getVisit_time() {
        return visit_time;
    }
 
    public void setVisit_time(String visit_time) {
        this.visit_time = visit_time;
    }
 
    @Override
    public String toString() {
        return "User{" +
                "create_time=" + create_time +
                ", uId=" + uId +
                ", uSnId='" + uSnId + '\'' +
                ", uName='" + uName + '\'' +
                ", uShenFenId='" + uShenFenId + '\'' +
                ", uEmployeeId='" + uEmployeeId + '\'' +
                ", uTelephone='" + uTelephone + '\'' +
                ", uMobilephone='" + uMobilephone + '\'' +
                ", uEmail='" + uEmail + '\'' +
                ", uAddr='" + uAddr + '\'' +
                ", uBirthDay=" + uBirthDay +
                ", uAccessionDay=" + uAccessionDay +
                ", uSex='" + uSex + '\'' +
                ", uDepartment='" + uDepartment + '\'' +
                ", uProTitle='" + uProTitle + '\'' +
                ", uAuthority='" + uAuthority + '\'' +
                ", uJobGroup='" + uJobGroup + '\'' +
                ", uDuties='" + uDuties + '\'' +
                ", uTasks='" + uTasks + '\'' +
                ", uBaojiUsr='" + uBaojiUsr + '\'' +
                ", uNote='" + uNote + '\'' +
                ", upassword='" + upassword + '\'' +
                ", uPubKeyX='" + uPubKeyX + '\'' +
                ", uPubKeyY='" + uPubKeyY + '\'' +
                ", uKey_ID='" + uKey_ID + '\'' +
                ", face_id=" + face_id +
                ", license='" + license + '\'' +
                ", login_type=" + login_type +
                ", uRole=" + uRole +
                ", type=" + type +
                ", status=" + status +
                ", expiration_time=" + expiration_time +
                ", last_login_time=" + last_login_time +
                ", password_update_time=" + password_update_time +
                ", lock_time=" + lock_time +
                ", visit_time='" + visit_time + '\'' +
                ", visit_ip='" + visit_ip + '\'' +
                '}';
    }
}