linzhijie
2021-03-11 93af1c6ffb9ae0e894689ad3a37b548e57d54cff
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package com.ots.project.exam.domain;
 
import com.ots.framework.aspectj.lang.annotation.Excel;
import com.ots.framework.web.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.springframework.web.multipart.MultipartFile;
 
import java.util.Date;
 
/**
 * 用户信息扩展对象 sys_user_extend
 *
 * @author ots
 * @date 2019-11-20
 */
public class SysUserExtend extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 用户编码
     */
    private Long userId;
 
    /**
     * 分销商编码
     */
    private Long parentUserId;
 
    private Long parentUserTempId;
 
    /**
     * 法人
     */
    @Excel(name = "法人")
    private String legalPerson;
 
    /**
     * 联系地址
     */
    @Excel(name = "联系地址")
    private String address;
 
    /**
     * 合同地址
     */
    @Excel(name = "合同地址")
    private String contractText;
 
    /**
     * 合同范围
     */
    @Excel(name = "合同范围")
    private String contractScope;
 
    /**
     * 生效时间
     */
    @Excel(name = "生效时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date effectTime;
 
    /**
     * 合作期限
     */
    @Excel(name = "合作期限", width = 30, dateFormat = "yyyy-MM-dd")
    private Date invalidTime;
 
    /**
     * 公司规模
     */
    @Excel(name = "公司规模")
    private Long companySize;
 
    /**
     * 营业执照信息
     */
    @Excel(name = "营业执照信息")
    private String businessLicense;
 
    /**
     * 业务经理
     */
    @Excel(name = "业务经理")
    private String businessManager;
 
    /**
     * 企业LOGO
     */
    @Excel(name = "企业LOGO")
    private String businessLogo;
 
    /**
     * 可用测试人数
     */
    @Excel(name = "可用测试人数")
    private Long testNum;
 
    /**
     * HR邮箱
     */
    @Excel(name = "HR邮箱")
    private String hrEmail;
 
    /**
     * 测试者是否收到报告(0否 1是)
     */
    @Excel(name = "测试者是否收到报告", readConverterExp = "0=否,1=是")
    private String sendReport;
 
    /**
     * 邮件内容
     */
    @Excel(name = "邮件内容")
    private String mailContent;
 
    /**
     * HR接受报告类型
     */
    @Excel(name = "HR接受报告类型")
    private String hrReportType;
 
    /**
     * 语言类型
     */
    @Excel(name = "报告语言类型")
    private String langType;
 
    private MultipartFile businessLicenseFile;
    private MultipartFile contractTextFile;
    private MultipartFile businessLogoFile;
 
    private String userType;
    private String userName;
    private String loginName;
    private String password;
    private String phonenumber;
    private String contactPerson;
    private String contactEmail;
 
    public String getContactPerson() {
        return contactPerson;
    }
 
    public void setContactPerson(String contactPerson) {
        this.contactPerson = contactPerson;
    }
 
    public String getContactEmail() {
        return contactEmail;
    }
 
    public void setContactEmail(String contactEmail) {
        this.contactEmail = contactEmail;
    }
 
    public Long getParentUserTempId() {
        return parentUserTempId;
    }
 
    public void setParentUserTempId(Long parentUserTempId) {
        this.parentUserTempId = parentUserTempId;
    }
 
    /**
     * 是否为一级供应商
     */
    private String firstLevel;
 
    public String getFirstLevel() {
        return firstLevel;
    }
 
    public void setFirstLevel(String firstLevel) {
        this.firstLevel = firstLevel;
    }
 
    public String getPhonenumber() {
        return phonenumber;
    }
 
    public void setPhonenumber(String phonenumber) {
        this.phonenumber = phonenumber;
    }
 
    public String getUserType() {
        return userType;
    }
 
    public void setUserType(String userType) {
        this.userType = userType;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getLoginName() {
        return loginName;
    }
 
    public void setLoginName(String loginName) {
        this.loginName = loginName;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setLegalPerson(String legalPerson) {
        this.legalPerson = legalPerson;
    }
 
    public String getLegalPerson() {
        return legalPerson;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setContractText(String contractText) {
        this.contractText = contractText;
    }
 
    public String getContractText() {
        return contractText;
    }
 
    public void setContractScope(String contractScope) {
        this.contractScope = contractScope;
    }
 
    public String getContractScope() {
        return contractScope;
    }
 
    public void setEffectTime(Date effectTime) {
        this.effectTime = effectTime;
    }
 
    public Date getEffectTime() {
        return effectTime;
    }
 
    public void setInvalidTime(Date invalidTime) {
        this.invalidTime = invalidTime;
    }
 
    public Date getInvalidTime() {
        return invalidTime;
    }
 
    public void setCompanySize(Long companySize) {
        this.companySize = companySize;
    }
 
    public Long getCompanySize() {
        return companySize;
    }
 
    public void setBusinessLicense(String businessLicense) {
        this.businessLicense = businessLicense;
    }
 
    public String getBusinessLicense() {
        return businessLicense;
    }
 
    public void setBusinessManager(String businessManager) {
        this.businessManager = businessManager;
    }
 
    public String getBusinessManager() {
        return businessManager;
    }
 
    public void setBusinessLogo(String businessLogo) {
        this.businessLogo = businessLogo;
    }
 
    public String getBusinessLogo() {
        return businessLogo;
    }
 
    public void setTestNum(Long testNum) {
        this.testNum = testNum;
    }
 
    public Long getTestNum() {
        return testNum;
    }
 
    public void setHrEmail(String hrEmail) {
        this.hrEmail = hrEmail;
    }
 
    public String getHrEmail() {
        return hrEmail;
    }
 
    public void setSendReport(String sendReport) {
        this.sendReport = sendReport;
    }
 
    public String getSendReport() {
        return sendReport;
    }
 
    public void setMailContent(String mailContent) {
        this.mailContent = mailContent;
    }
 
    public String getMailContent() {
        return mailContent;
    }
 
    public void setHrReportType(String hrReportType) {
        this.hrReportType = hrReportType;
    }
 
    public String getHrReportType() {
        return hrReportType;
    }
 
    public void setLangType(String langType) {
        this.langType = langType;
    }
 
    public String getLangType() {
        return langType;
    }
 
    public MultipartFile getBusinessLicenseFile() {
        return businessLicenseFile;
    }
 
    public void setBusinessLicenseFile(MultipartFile businessLicenseFile) {
        this.businessLicenseFile = businessLicenseFile;
    }
 
    public Long getParentUserId() {
        return parentUserId;
    }
 
    public void setParentUserId(Long parentUserId) {
        this.parentUserId = parentUserId;
    }
 
    public MultipartFile getContractTextFile() {
        return contractTextFile;
    }
 
    public void setContractTextFile(MultipartFile contractTextFile) {
        this.contractTextFile = contractTextFile;
    }
 
    public MultipartFile getBusinessLogoFile() {
        return businessLogoFile;
    }
 
    public void setBusinessLogoFile(MultipartFile businessLogoFile) {
        this.businessLogoFile = businessLogoFile;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("userId", getUserId())
                .append("legalPerson", getLegalPerson())
                .append("address", getAddress())
                .append("contractText", getContractText())
                .append("contractScope", getContractScope())
                .append("effectTime", getEffectTime())
                .append("invalidTime", getInvalidTime())
                .append("companySize", getCompanySize())
                .append("businessLicense", getBusinessLicense())
                .append("businessManager", getBusinessManager())
                .append("businessLogo", getBusinessLogo())
                .append("testNum", getTestNum())
                .append("hrEmail", getHrEmail())
                .append("sendReport", getSendReport())
                .append("mailContent", getMailContent())
                .append("hrReportType", getHrReportType())
                .append("langType", getLangType())
                .toString();
    }
}