地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package com.javaweb.platform.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
 
/**
 * 用户管理对象 js_front_user
 * 
 * @author zmk
 * @date 2022-03-21
 */
public class FrontUser extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 登录名字 */
    @Excel(name = "登录名字")
    private String userName;
 
    /** 用户类型(1 普通 2 企业) */
    @Excel(name = "用户类型", readConverterExp = "1=,普=通,2=,企=业")
    private String userType;
 
    /** 邮箱 */
    @Excel(name = "邮箱")
    private String email;
 
    /** 电话 */
    @Excel(name = "电话")
    private String phone;
 
    /** 密码 */
    @Excel(name = "密码")
    private String password;
 
    /** 密码 */
    @Excel(name = "密码")
    private String salt;
 
    /** 状态 (1 正常使用 2 申请中 3 申请失败) */
    @Excel(name = "状态 ", readConverterExp = "1=正常使用,2=申请中,3=申请失败")
    private String status;
 
    /** 是否删除 */
    @Excel(name = "是否删除")
    private String isDeleted;
 
    /** 头像 */
    @Excel(name = "头像")
    private String avatar;
 
    /** 登录IP */
    @Excel(name = "登录IP")
    private String loginIp;
 
    /** 企业地址 */
    @Excel(name = "企业地址")
    private String address;
 
    /** 公司名字 */
    @Excel(name = "公司名字")
    private String company;
 
    /** 待审核附件 */
    @Excel(name = "待审核附件")
    private String applyLicense;
    
    /**
     * 联系人
     */
    private String contacts;
    
    /**
     * 公司的性质
     */
    private String companyProps;
    
    /**
     * 验证token
     */
    private  String accessToken ;
    
    /**
     * 营业执照代码
     */
    private String businessNo;
    
    
    private String  notify;//通知
    
    
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setUserName(String userName) 
    {
        this.userName = userName;
    }
 
    public String getUserName() 
    {
        return userName;
    }
    public void setUserType(String userType) 
    {
        this.userType = userType;
    }
 
    public String getUserType() 
    {
        return userType;
    }
    public void setEmail(String email) 
    {
        this.email = email;
    }
 
    public String getEmail() 
    {
        return email;
    }
    public void setPhone(String phone) 
    {
        this.phone = phone;
    }
 
    public String getPhone() 
    {
        return phone;
    }
    public void setPassword(String password) 
    {
        this.password = password;
    }
 
    public String getPassword() 
    {
        return password;
    }
    public void setSalt(String salt) 
    {
        this.salt = salt;
    }
 
    public String getSalt() 
    {
        return salt;
    }
    public void setStatus(String status) 
    {
        this.status = status;
    }
 
    public String getStatus() 
    {
        return status;
    }
    public void setIsDeleted(String isDeleted) 
    {
        this.isDeleted = isDeleted;
    }
 
    public String getIsDeleted() 
    {
        return isDeleted;
    }
    public void setAvatar(String avatar) 
    {
        this.avatar = avatar;
    }
 
    public String getAvatar() 
    {
        return avatar;
    }
    public void setLoginIp(String loginIp) 
    {
        this.loginIp = loginIp;
    }
 
    public String getLoginIp() 
    {
        return loginIp;
    }
    public void setAddress(String address) 
    {
        this.address = address;
    }
 
    public String getAddress() 
    {
        return address;
    }
    public void setCompany(String company) 
    {
        this.company = company;
    }
 
    public String getCompany() 
    {
        return company;
    }
    public void setApplyLicense(String applyLicense) 
    {
        this.applyLicense = applyLicense;
    }
 
    public String getApplyLicense() 
    {
        return applyLicense;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("userName", getUserName())
            .append("userType", getUserType())
            .append("email", getEmail())
            .append("phone", getPhone())
            .append("password", getPassword())
            .append("salt", getSalt())
            .append("status", getStatus())
            .append("isDeleted", getIsDeleted())
            .append("avatar", getAvatar())
            .append("loginIp", getLoginIp())
            .append("createTime", getCreateTime())
            .append("address", getAddress())
            .append("company", getCompany())
            .append("applyLicense", getApplyLicense())
            .toString();
    }
 
    public String getContacts() {
        return contacts;
    }
 
    public void setContacts(String contacts) {
        this.contacts = contacts;
    }
 
    public String getCompanyProps() {
        return companyProps;
    }
 
    public void setCompanyProps(String companyProps) {
        this.companyProps = companyProps;
    }
 
    public String getAccessToken() {
        return accessToken;
    }
 
    public void setAccessToken(String accessToken) {
        this.accessToken = accessToken;
    }
 
    public String getBusinessNo() {
        return businessNo;
    }
 
    public void setBusinessNo(String businessNo) {
        this.businessNo = businessNo;
    }
 
    public String getNotify() {
        return notify;
    }
 
    public void setNotify(String notify) {
        this.notify = notify;
    }
}