linzhijie
2021-04-12 c632636e2f5b4188b430f5efc9d9f68c8dbe3d6d
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
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;
 
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;
    
    @Excel(name = "企业LOGO")
    private String businessLogo;
    
    @Excel(name = "可用测试人数")
    private Long testNum;
    
    @Excel(name = "HR邮箱")
    private String hrEmail;
    
    @Excel(name = "测试者是否收到报告", readConverterExp = "0=否,1=是")
    private String sendReport;
    
    @Excel(name = "邮件内容")
    private String mailContent;
    
    @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();
    }
}