user_attrs.php
3.08 KB
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
<?php
/**
* 用户属性
*/
return [
'memUsername' => [
'attr_name' => '姓名',
'attr_type' => 1,
],
'memGender' => [
'attr_name' => '性别',
'attr_type' => 1,
],
'memMobile' => [
'attr_name' => '手机号',
'attr_type' => 1,
],
'memWeixin' => [
'attr_name' => '微信号',
'attr_type' => 1,
],
'memEmail' => [
'attr_name' => '邮箱',
'attr_type' => 1,
],
'dpName' => [
'attr_name' => '部门',
'attr_type' => 1,
],
'jobNumber' => [
'attr_name' => '工号',
'attr_type' => 2,
],
'memJob' => [
'attr_name' => '职位',
'attr_type' => 1,
],
'jobRank' => [
'attr_name' => '职级',
'attr_type' => 2,
],
'memLead' => [
'attr_name' => '直属上级',
'attr_type' => 1,
],
'memJoinTime' => [
'attr_name' => '入职日期',
'attr_type' => 1,
],
'nature' => [
'attr_name' => '员工性质',
'attr_type' => 2,
],
'memActive' => [
'attr_name' => '在职状态',
'attr_type' => 1,
],
'education' => [
'attr_name' => '学历',
'attr_type' => 2,
],
'maritalStatus' => [
'attr_name' => '婚姻状况',
'attr_type' => 2,
],
'memIdcard' => [
'attr_name' => '身份证号',
'attr_type' => 1,
],
'birthday' => [
'attr_name' => '生日',
'attr_type' => 1,
],
'bankCardId' => [
'attr_name' => '银行卡号',
'attr_type' => 2,
],
'bankName' => [
'attr_name' => '开户行',
'attr_type' => 2,
],
'afAccount' => [
'attr_name' => '公积金账号',
'attr_type' => 2,
],
'recruitmentChannel' => [
'attr_name' => '招聘渠道',
'attr_type' => 2,
],
'personalEmail' => [
'attr_name' => '个人邮箱',
'attr_type' => 2,
],
'memQq' => [
'attr_name' => 'QQ',
'attr_type' => 1,
],
'leaveDate' => [
'attr_name' => '离职日期',
'attr_type' => 2,
],
'custom1' => [
'attr_name' => '自定义属性1',
'attr_type' => 2,
],
'custom2' => [
'attr_name' => '自定义属性2',
'attr_type' => 2,
],
'custom3' => [
'attr_name' => '自定义属性3',
'attr_type' => 2,
],
'custom4' => [
'attr_name' => '自定义属性4',
'attr_type' => 2,
],
'custom5' => [
'attr_name' => '自定义属性5',
'attr_type' => 2,
],
'custom6' => [
'attr_name' => '自定义属性6',
'attr_type' => 2,
],
'custom7' => [
'attr_name' => '自定义属性7',
'attr_type' => 2,
],
'custom8' => [
'attr_name' => '自定义属性8',
'attr_type' => 2,
],
'custom9' => [
'attr_name' => '自定义属性9',
'attr_type' => 2,
],
'custom10' => [
'attr_name' => '自定义属性10',
'attr_type' => 2,
],
];