干燥机配套车间生产管理系统/云平台服务端
zhuguifei
2024-11-29 339515558253d776769dc2e2560bbb4a0450c989
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
package org.jeecg.modules.system.vo;
 
import lombok.Data;
import org.jeecg.common.aspect.annotation.Dict;
 
/**
 * @Description: 用户租户类(用户数据租户数据)
 * @author: wangshuai
 * @date: 2023年01月08日 17:27
 */
@Data
public class SysUserTenantVo {
 
    /**
     * 用户id
     */
    private String id;
 
    /**
     * 用户账号
     */
    private String username;
 
    /**
     * 用户昵称
     */
    private String realname;
 
    /**
     * 工号
     */
    private String workNo;
    
    /**
     * 邮箱
     */
    private String email; 
    
    /**
     * 手机号
     */
    private String phone;   
    
    /**
     * 头像
     */
    private String avatar; 
    
    /**
     * 职位
     */
    private String post;
 
    /**
     * 审核状态
     */
    private String status;
 
    /**
     * 部门名称
     */
    private String orgCodeTxt;
 
    /**
     * 部门code
     */
    private String orgCode;
 
    /**
     * 租户id
     */
    private String relTenantIds;
 
    /**
     * 租户创建人
     */
    private String createBy;
 
    /**
     * 用户租户状态
     */
    private String userTenantStatus;
 
    /**
     * 用户租户id
     */
    private String tenantUserId;
 
    /**
     * 租户名称
     */
    private String name;
 
    /**
     * 所属行业
     */
    @Dict(dicCode = "trade")
    private String trade;
    
    /**
     * 门牌号
     */
    private String houseNumber;
}