zqy
2025-06-22 ec4733f0c90a88f2266731d16c94e6e2fada7528
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
package com.ruoyi.domain;
 
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.annotation.Excels;
import com.ruoyi.common.core.domain.BaseEntity;
import com.ruoyi.common.core.domain.entity.SysDept;
import com.ruoyi.common.core.domain.entity.SysRole;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
@Data
public class sysUserAndUserInfo extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
 
    private Long userId;
 
    @Excel(name = "手机号码")
    private String phonenumber;
 
 
 
    /** 用户头像 */
    private String avatar;
 
    /** 密码 */
    private String password;
 
    /** 用户昵称 */
    @Excel(name = "用户昵称")
    private String nickName;
 
 
 
 
    /** 用户昵称 */
    @Excel(name = "用户名称")
    private String userName;
 
    /** 用户性别 */
    @Excel(name = "用户性别", readConverterExp = "0=男,1=女,2=未知")
    private String sex;
 
 
 
    /** 帐号状态(0正常 1停用) */
    @Excel(name = "帐号状态", readConverterExp = "0=正常,1=停用")
    private String status;
 
 
 
    /** 角色对象 */
    private List<SysRole> roles;
 
    /** 角色组 */
    private Long[] roleIds;
 
 
    /** 角色ID */
    private Long roleId;
 
 
    private Integer isMyFamily;
 
 
    private Long spouseId;
 
    private Long fid;
 
    private Long mid;
    private Long sysId;
 
 
    private Integer clanId;
 
    /** 婚姻状况(0:未婚,1:已婚,2:离婚) */
    private Integer maritalStatus;
}