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
export class SysUserInfo {
userId: string;
userCode: string;
userName: string;
comId: string;
deptId: string;
postId: string;
idnum: string;
sex: string;
birthday: string;
headImg: string;
phone: string;
email: string;
userSource: string;
isBusTrip: string;
useState: string;
constructor(
options: {
userId?: string;
userCode?: string;
userName?: string;
comId?: string;
deptId?: string;
postId?: string;
idnum?: string;
sex?: string;
birthday?: string;
headImg?: string;
phone?: string;
email?: string;
userSource?: string;
isBusTrip?: string;
useState?: string;
} = {}
) {
this.userId = options.userId || "";
this.userCode = options.userCode || "";
this.userName = options.userName || "";
this.comId = options.comId || "";
this.deptId = options.deptId || "";
this.postId = options.postId || "";
this.idnum = options.idnum || "";
this.sex = options.sex || "";
this.birthday = options.birthday || "";
this.headImg = options.headImg || "";
this.phone = options.phone || "";
this.email = options.email || "";
this.userSource = options.userSource || "";
this.isBusTrip = options.isBusTrip || "";
this.useState = options.useState || "";
}
}