TransportationEnterprise.java
12.7 KB
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
package com.trash.enterprise.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.trash.common.annotation.Excel;
import com.trash.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.math.BigDecimal;
import java.util.Date;
/**
* 运输企业管理对象 transportation_enterprise
*
* @author trash
* @date 2023-11-21
*/
public class TransportationEnterprise extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private String id;
/** 企业名称 */
@Excel(name = "企业名称")
private String name;
/** 简称 */
@Excel(name = "简称")
private String abbreviation;
/** 注册地所在区域 */
@Excel(name = "注册地所在区域")
private String registrationArea;
/** 企业道路运输经营许可证有效期 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "企业道路运输经营许可证有效期", width = 30, dateFormat = "yyyy-MM-dd")
private Date transportPermissionDate;
/** 企业入市时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "企业入市时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date enterDate;
/** 企业营业执照有效期 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "企业营业执照有效期", width = 30, dateFormat = "yyyy-MM-dd")
private Date businessLicenseDate;
/** 办公地址 */
@Excel(name = "办公地址")
private String officeAddress;
/** 办公地址gps,经纬度 */
private String officeAddressGps;
/** 停车场位置 */
@Excel(name = "停车场位置")
private String parkingLotLocation;
/** 停车场面积 */
@Excel(name = "停车场面积")
private BigDecimal parkingArea;
/** 车辆数 */
@Excel(name = "车辆数")
private Integer carNumber;
/** 企业安全负责人名称 */
@Excel(name = "企业安全负责人名称")
private String safetyManagerName;
/** 企业安全负责人联系方式 */
@Excel(name = "企业安全负责人联系方式")
private String safetyManagerPhone;
/** 社会统一信用代码编号 */
@Excel(name = "社会统一信用代码编号")
private String socialUniformCreditCodeNumber;
/** 法人代表 */
@Excel(name = "法人代表")
private String legalRepresentative;
/** 法人代表联系方式 */
@Excel(name = "法人代表联系方式")
private String legalRepresentativePhone;
/** 安全管理人员 */
private String safetyPeopleName;
/** 企业道路运输经营许可证 */
private String transportPermission;
/** 企业营业执照 */
private String enterpriseBusinessLicense;
/** 安全员考核合格证明 */
private String safetyOfficerQualificationCertificate;
/** 企业负责人安全考核证 */
private String safetyCertificate;
/** 停车场全景图 */
private String carParkPanorama;
/** 经营单位 */
private String businessUnit;
/** 审批状态,0=审批中,1=审批通过,2=被驳回 */
@Excel(name = "审批状态",readConverterExp = "0=审批中,1=审批通过,2=被驳回")
private Integer status;
/** 父公司id */
private Long parentId;
/** 公司类型(0经营单位,1运输公司) */
@Excel(name = "公司类型", readConverterExp = "0=经营单位,1运输公司")
private Integer companyType;
/** 信用状态 */
private String creditStatus;
/** 二维码 */
private String qrCode;
/** 企业服务电话 */
@Excel(name = "公司类型")
private String servicePhone;
/** 公司报价 */
@Excel(name = "公司报价")
private String offer;
/**
* 公司logo,公司头像
*/
private String companyLogo;
/***
* 1是用户,2是清运车辆驾驶员,3是企业负责人,4是处置场所负责人
*/
private Integer userTypeValue;
private String userType;
public String getCompanyLogo() {
return companyLogo;
}
public void setCompanyLogo(String companyLogo) {
this.companyLogo = companyLogo;
}
public String getOffer() {
return offer;
}
public void setOffer(String offer) {
this.offer = offer;
}
public String getOfficeAddressGps() {
return officeAddressGps;
}
public void setOfficeAddressGps(String officeAddressGps) {
this.officeAddressGps = officeAddressGps;
}
public String getServicePhone() {
return servicePhone;
}
public void setServicePhone(String servicePhone) {
this.servicePhone = servicePhone;
}
public void setId(String id)
{
this.id = id;
}
public String getId()
{
return id;
}
public void setName(String name)
{
this.name = name;
}
public String getName()
{
return name;
}
public void setAbbreviation(String abbreviation)
{
this.abbreviation = abbreviation;
}
public String getAbbreviation()
{
return abbreviation;
}
public void setRegistrationArea(String registrationArea)
{
this.registrationArea = registrationArea;
}
public String getRegistrationArea()
{
return registrationArea;
}
public void setTransportPermissionDate(Date transportPermissionDate)
{
this.transportPermissionDate = transportPermissionDate;
}
public Date getTransportPermissionDate()
{
return transportPermissionDate;
}
public void setEnterDate(Date enterDate)
{
this.enterDate = enterDate;
}
public Date getEnterDate()
{
return enterDate;
}
public void setBusinessLicenseDate(Date businessLicenseDate)
{
this.businessLicenseDate = businessLicenseDate;
}
public Date getBusinessLicenseDate()
{
return businessLicenseDate;
}
public void setOfficeAddress(String officeAddress)
{
this.officeAddress = officeAddress;
}
public String getOfficeAddress()
{
return officeAddress;
}
public void setParkingLotLocation(String parkingLotLocation)
{
this.parkingLotLocation = parkingLotLocation;
}
public String getParkingLotLocation()
{
return parkingLotLocation;
}
public void setParkingArea(BigDecimal parkingArea)
{
this.parkingArea = parkingArea;
}
public BigDecimal getParkingArea()
{
return parkingArea;
}
public void setCarNumber(Integer carNumber)
{
this.carNumber = carNumber;
}
public Integer getCarNumber()
{
return carNumber;
}
public void setSafetyManagerName(String safetyManagerName)
{
this.safetyManagerName = safetyManagerName;
}
public String getSafetyManagerName()
{
return safetyManagerName;
}
public void setSafetyManagerPhone(String safetyManagerPhone)
{
this.safetyManagerPhone = safetyManagerPhone;
}
public String getSafetyManagerPhone()
{
return safetyManagerPhone;
}
public void setSocialUniformCreditCodeNumber(String socialUniformCreditCodeNumber)
{
this.socialUniformCreditCodeNumber = socialUniformCreditCodeNumber;
}
public String getSocialUniformCreditCodeNumber()
{
return socialUniformCreditCodeNumber;
}
public void setLegalRepresentative(String legalRepresentative)
{
this.legalRepresentative = legalRepresentative;
}
public String getLegalRepresentative()
{
return legalRepresentative;
}
public void setLegalRepresentativePhone(String legalRepresentativePhone)
{
this.legalRepresentativePhone = legalRepresentativePhone;
}
public String getLegalRepresentativePhone()
{
return legalRepresentativePhone;
}
public void setSafetyPeopleName(String safetyPeopleName)
{
this.safetyPeopleName = safetyPeopleName;
}
public String getSafetyPeopleName()
{
return safetyPeopleName;
}
public void setTransportPermission(String transportPermission)
{
this.transportPermission = transportPermission;
}
public String getTransportPermission()
{
return transportPermission;
}
public void setEnterpriseBusinessLicense(String enterpriseBusinessLicense)
{
this.enterpriseBusinessLicense = enterpriseBusinessLicense;
}
public String getEnterpriseBusinessLicense()
{
return enterpriseBusinessLicense;
}
public void setSafetyOfficerQualificationCertificate(String safetyOfficerQualificationCertificate)
{
this.safetyOfficerQualificationCertificate = safetyOfficerQualificationCertificate;
}
public String getSafetyOfficerQualificationCertificate()
{
return safetyOfficerQualificationCertificate;
}
public void setSafetyCertificate(String safetyCertificate)
{
this.safetyCertificate = safetyCertificate;
}
public String getSafetyCertificate()
{
return safetyCertificate;
}
public void setCarParkPanorama(String carParkPanorama)
{
this.carParkPanorama = carParkPanorama;
}
public String getCarParkPanorama()
{
return carParkPanorama;
}
public void setBusinessUnit(String businessUnit)
{
this.businessUnit = businessUnit;
}
public String getBusinessUnit()
{
return businessUnit;
}
public void setStatus(Integer status)
{
this.status = status;
}
public Integer getStatus()
{
return status;
}
public void setParentId(Long parentId)
{
this.parentId = parentId;
}
public Long getParentId()
{
return parentId;
}
public void setCompanyType(Integer companyType)
{
this.companyType = companyType;
}
public Integer getCompanyType()
{
return companyType;
}
public void setCreditStatus(String creditStatus)
{
this.creditStatus = creditStatus;
}
public String getCreditStatus()
{
return creditStatus;
}
public void setQrCode(String qrCode)
{
this.qrCode = qrCode;
}
public String getQrCode()
{
return qrCode;
}
public Integer getUserTypeValue() {
return userTypeValue;
}
public void setUserTypeValue(Integer userTypeValue) {
this.userTypeValue = userTypeValue;
}
public String getUserType() {
return userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("name", getName())
.append("abbreviation", getAbbreviation())
.append("registrationArea", getRegistrationArea())
.append("transportPermissionDate", getTransportPermissionDate())
.append("enterDate", getEnterDate())
.append("businessLicenseDate", getBusinessLicenseDate())
.append("officeAddress", getOfficeAddress())
.append("parkingLotLocation", getParkingLotLocation())
.append("parkingArea", getParkingArea())
.append("carNumber", getCarNumber())
.append("safetyManagerName", getSafetyManagerName())
.append("safetyManagerPhone", getSafetyManagerPhone())
.append("socialUniformCreditCodeNumber", getSocialUniformCreditCodeNumber())
.append("legalRepresentative", getLegalRepresentative())
.append("legalRepresentativePhone", getLegalRepresentativePhone())
.append("safetyPeopleName", getSafetyPeopleName())
.append("remark", getRemark())
.append("transportPermission", getTransportPermission())
.append("enterpriseBusinessLicense", getEnterpriseBusinessLicense())
.append("safetyOfficerQualificationCertificate", getSafetyOfficerQualificationCertificate())
.append("safetyCertificate", getSafetyCertificate())
.append("carParkPanorama", getCarParkPanorama())
.append("businessUnit", getBusinessUnit())
.append("status", getStatus())
.append("createTime", getCreateTime())
.append("createBy", getCreateBy())
.append("updateTime", getUpdateTime())
.append("updateBy", getUpdateBy())
.append("parentId", getParentId())
.append("companyType", getCompanyType())
.append("creditStatus", getCreditStatus())
.append("qrCode", getQrCode())
.toString();
}
}