广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-02 80ff784bf60637cd348ae665fc907f7b1e527dd8
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
package org.dromara.system.domain.vo;
 
import lombok.Data;
import org.dromara.common.translation.annotation.Translation;
import org.dromara.common.translation.constant.TransConstant;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * 用户信息视图对象 sys_user
 *
 * @author Lion Li
 */
@Data
public class ProfileUserVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 用户ID
     */
    private Long userId;
 
    /**
     * 租户ID
     */
    private String tenantId;
 
    /**
     * 部门ID
     */
    private Long deptId;
 
    /**
     * 用户账号
     */
    private String userName;
 
    /**
     * 用户昵称
     */
    private String nickName;
 
    /**
     * 用户类型(sys_user系统用户)
     */
    private String userType;
 
    /**
     * 用户邮箱
     */
    private String email;
 
    /**
     * 手机号码
     */
    private String phonenumber;
 
    /**
     * 用户性别(0男 1女 2未知)
     */
    private String sex;
 
    /**
     * 头像地址
     */
    @Translation(type = TransConstant.OSS_ID_TO_URL)
    private Long avatar;
 
    /**
     * 最后登录IP
     */
    private String loginIp;
 
    /**
     * 最后登录时间
     */
    private Date loginDate;
 
    /**
     * 部门名
     */
    @Translation(type = TransConstant.DEPT_ID_TO_NAME, mapper = "deptId")
    private String deptName;
 
}