liulin
2024-07-30 ce04dfcdd664df7e791a63800cab2cd2d12e878c
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package com.lunhan.xxx.common.jwt;
 
import java.util.List;
 
public class LoginUserDTO {
    /**
     * 身份令牌
     */
    private String token;
    /**
     * 用户唯一标识
     */
    private String userId;
    /**
     * 用户类型 EUserType
     */
    private Integer userType;
    /**
     * 用户名称
     */
    private String userName;
    /**
     * 手机号
     */
    private String phone;
    /**
     * 昵称
     */
    private String nickName;
    /**
     * 头像
     */
    private String headImg;
    /**
     * 拥有角色列表
     */
    private List<Long> listRole;
    /**
     * 拥有角色-名称列表
     */
    private List<String> listRoleName;
    /**
     * 所属客户公司(当 userType=3 时)
     */
    private Long customerCompany;
    /**
     * 所属客户公司名称
     */
    private String customerCompanyName;
 
    /**
     * 客户公司所属区域
     */
    private String customerRegion;
    /**
     * 是否是子帐号(当 userType=3 时)
     */
    private Integer isChild;
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public Integer getUserType() {
        return userType;
    }
 
    public void setUserType(Integer userType) {
        this.userType = userType;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public String getHeadImg() {
        return headImg;
    }
 
    public void setHeadImg(String headImg) {
        this.headImg = headImg;
    }
 
    public List<Long> getListRole() {
        return listRole;
    }
 
    public void setListRole(List<Long> listRole) {
        this.listRole = listRole;
    }
 
    public List<String> getListRoleName() {
        return listRoleName;
    }
 
    public void setListRoleName(List<String> listRoleName) {
        this.listRoleName = listRoleName;
    }
 
    public Long getCustomerCompany() {
        return customerCompany;
    }
 
    public void setCustomerCompany(Long customerCompany) {
        this.customerCompany = customerCompany;
    }
 
    public String getCustomerCompanyName() {
        return customerCompanyName;
    }
 
    public void setCustomerCompanyName(String customerCompanyName) {
        this.customerCompanyName = customerCompanyName;
    }
 
    public String getCustomerRegion() {
        return customerRegion;
    }
 
    public void setCustomerRegion(String customerRegion) {
        this.customerRegion = customerRegion;
    }
 
    public Integer getIsChild() {
        return isChild;
    }
 
    public void setIsChild(Integer isChild) {
        this.isChild = isChild;
    }
}