xiangpei
2025-05-14 47cd9ecc0eff38ffe6b3b794b2bf197e958f4403
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
package com.mindskip.xzs.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.mindskip.xzs.domain.enums.UserConditionEnum;
import com.mindskip.xzs.utility.excel.ExcelImport;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
public class UserVO implements Serializable {
 
 
    private static final long serialVersionUID = -7797183521247423117L;
 
    private Integer id;
 
    private String userUuid;
 
    /**
     * 用户名
     */
    @ExcelImport("用户名")
    private String userName;
 
    @ExcelImport("密码")
    private String password;
 
    /**
     * 真实姓名
     */
    @ExcelImport("真实姓名")
    private String realName;
 
    private Integer age;
 
    /**
     * 1.男 2女
     */
    private Integer sex;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date birthDay;
 
    /**
     * 学生年级(1-12)
     */
    private Integer userLevel;
 
    @ExcelImport("部门")
    private String department;
 
    private String phone;
 
    /**
     * 1.学生  3.管理员
     */
    private final Integer role = 1;
 
    /**
     * 1.启用 2禁用
     */
    private final Integer status = 1;
 
    /**
     * 头像地址
     */
    private String imagePath;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date modifyTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date lastActiveTime;
 
    /**
     * 是否删除
     */
    private Boolean deleted;
 
    /**
     * 微信openId
     */
    private String wxOpenId;
 
    private UserConditionEnum condition;
 
    private Integer tagId;
 
    private List<Integer> deptIds;
 
    private List<Integer> tagIds;
 
    private List<Integer> excludeTagIds;
 
    private Integer pageIndex;
 
    private Integer pageSize;
 
    public List<Integer> getExcludeTagIds() {
        return excludeTagIds;
    }
 
    public void setExcludeTagIds(List<Integer> excludeTagIds) {
        this.excludeTagIds = excludeTagIds;
    }
 
    public List<Integer> getTagIds() {
        return tagIds;
    }
 
    public void setTagIds(List<Integer> tagIds) {
        this.tagIds = tagIds;
    }
 
    public List<Integer> getDeptIds() {
        return deptIds;
    }
 
    public void setDeptIds(List<Integer> deptIds) {
        this.deptIds = deptIds;
    }
 
    public Integer getPageIndex() {
        return pageIndex;
    }
 
    public void setPageIndex(Integer pageIndex) {
        this.pageIndex = pageIndex;
    }
 
    public Integer getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public Integer getTagId() {
        return tagId;
    }
 
    public void setTagId(Integer tagId) {
        this.tagId = tagId;
    }
 
    public UserConditionEnum getCondition() {
        return condition;
    }
 
    public void setCondition(UserConditionEnum condition) {
        this.condition = condition;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getUserUuid() {
        return userUuid;
    }
 
    public void setUserUuid(String userUuid) {
        this.userUuid = userUuid == null ? null : userUuid.trim();
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName == null ? null : userName.trim();
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password == null ? null : password.trim();
    }
 
    public String getRealName() {
        return realName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName == null ? null : realName.trim();
    }
 
    public Integer getAge() {
        return age;
    }
 
    public void setAge(Integer age) {
        this.age = age;
    }
 
    public Integer getSex() {
        return sex;
    }
 
    public void setSex(Integer sex) {
        this.sex = sex;
    }
 
    public Date getBirthDay() {
        return birthDay;
    }
 
    public void setBirthDay(Date birthDay) {
        this.birthDay = birthDay;
    }
 
    public Integer getUserLevel() {
        return userLevel;
    }
 
    public void setUserLevel(Integer userLevel) {
        this.userLevel = userLevel;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone == null ? null : phone.trim();
    }
 
    public Integer getRole() {
        return role;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public String getImagePath() {
        return imagePath;
    }
 
    public void setImagePath(String imagePath) {
        this.imagePath = imagePath == null ? null : imagePath.trim();
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getModifyTime() {
        return modifyTime;
    }
 
    public void setModifyTime(Date modifyTime) {
        this.modifyTime = modifyTime;
    }
 
    public Date getLastActiveTime() {
        return lastActiveTime;
    }
 
    public void setLastActiveTime(Date lastActiveTime) {
        this.lastActiveTime = lastActiveTime;
    }
 
    public Boolean getDeleted() {
        return deleted;
    }
 
    public void setDeleted(Boolean deleted) {
        this.deleted = deleted;
    }
 
    public String getWxOpenId() {
        return wxOpenId;
    }
 
    public void setWxOpenId(String wxOpenId) {
        this.wxOpenId = wxOpenId == null ? null : wxOpenId.trim();
    }
 
    public String getDepartment() {
        return department;
    }
 
    public void setDepartment(String department) {
        this.department = department;
    }
}