fuliqi
2024-07-16 38f9471ecf47b7c15b352113bc0f5a2ec1e64e7b
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
package com.ycl.jxkg.domain.vo.student.user;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
@Data
public class UserLoginVO  {
 
    private Integer id;
 
    private String userUuid;
 
    private List<String> className;
    /**
     * 用户名
     */
    private String userName;
 
    /**
     * 真实姓名
     */
    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;
 
 
    private String phone;
 
    /**
     * 1.学生 2.老师 3.管理员
     */
    private Integer role;
 
    /**
     * 1.启用 2禁用
     */
    private Integer status;
 
    /**
     * 头像地址
     */
    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;
 
    /**
     * 微信openId
     */
    private String wxOpenId;
 
    /**
     * 上一次修改密码的时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date lastUpdatePasswordTime;
 
}