ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.permission.model.user.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
import jnpf.base.model.vo.UserOnLineModelVo;
import lombok.Data;
 
import java.util.List;
 
/**
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2021/3/12 15:31
 */
@Data
public class UserBaseInfoVO {
    @Schema(description = "主键")
    private String id;
    @Schema(description = "账户")
    private String account;
    @Schema(description = "户名")
    private String realName;
    @Schema(description = "部门")
    private String organize;
    @Schema(description = "公司名称")
    private String company;
    @Schema(description = "岗位")
    private String position;
    @Schema(description = "主管")
    private String manager;
    @Schema(description = "角色")
    private String roleId;
    @Schema(description = "注册时间")
    private Long creatorTime;
    @Schema(description = "上次登录时间")
    private Long prevLogTime;
    @Schema(description = "自我介绍")
    private String signature;
    @Schema(description = "性别")
    private String gender;
    @Schema(description = "民族")
    private String nation;
    @Schema(description = "籍贯")
    private String nativePlace;
    @Schema(description = "入职时间")
    private Long entryDate;
    @Schema(description = "证件类型")
    private String certificatesType;
    @Schema(description = "证件号码")
    private String certificatesNumber;
    @Schema(description = "学历")
    private String education;
    @Schema(description = "出生年月")
    private Long birthday;
    @Schema(description = "办公电话")
    private String telePhone;
    @Schema(description = "办公座机")
    private String landline;
    @Schema(description = "手机号码")
    private String mobilePhone;
    @Schema(description = "电子邮箱")
    private String email;
    @Schema(description = "紧急联系人")
    private String urgentContacts;
    @Schema(description = "紧急联系人电话")
    private String urgentTelePhone;
    @Schema(description = "通信地址")
    private String postalAddress;
    @Schema(description = "用户头像")
    private String avatar;
    @Schema(description = "主题")
    private String theme;
    @Schema(description = "语言")
    private String language;
 
    @Schema(description = "职级")
    private String ranks;
 
    @Schema(description = "是否多租户")
    private Boolean isTenant = false;
 
    @Schema(description = "多租户信息")
    private Object currentTenantInfo;
    @Schema(description = "外观设置")
    private String preferenceJson;
 
    @Schema(description = "扩展属性")
    private String propertyJson;
 
    @Schema(description = "网页端登录列表")
    private List<UserOnLineModelVo> pcOnlineModelList;
    @Schema(description = "app端登录列表")
    private List<UserOnLineModelVo> appOnlineModelList;
 
 
}