liujie
2023-05-26 786466f6accfe836160342c56cdf3415e09bcb38
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.enums.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
 
/**
 * <p>
 * 卡车公司
 * </p>
 *
 * @author stylefeng
 * @since 2023-01-30
 */
@TableName("t_company")
public class TCompany extends Model<TCompany> {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 简介
     */
    private String describe;
    /**
     * 头像
     */
    private String headImg;
    /**
     * 名称
     */
    private String name;
    @TableField("scac_code")
    private String scacCode;
    /**
     * 联系人手机号
     */
    @TableField("contact_phone")
    private String contactPhone;
    /**
     * 邮箱
     */
    @TableField("contact_email")
    private String contactEmail;
    /**
     * 地址
     */
    private String address;
    /**
     * mc_number
     */
    @TableField("mc_number")
    private Integer mcNumber;
    private String usdot;
    @TableField("set_up_the_time")
    private String setUpTheTime;
    @TableField("logistics_contact_name")
    private String logisticsContactName;
    @TableField("logistics_contact_email")
    private String logisticsContactEmail;
    /**
     * 账号
     */
    private String account;
    private String password;
    /**
     * 过期时间
     */
    @TableField("expiration_time")
    private Date expirationTime;
    /**
     * 0 申请 1通过 2不通过
     */
    private Integer status;
    private Integer HAZMAT;
    /**
     * 1 yes 2no
     */
    @TableField("OVERWEIGHT_PERMIT")
    private Integer overweightPermit;
    /**
     * 1 yes 2no
     */
    @TableField("LIQUOR")
    private Integer liquor;
    /**
     * 1 yes 2no
     */
    @TableField("HOUSEHOLD_GOODS")
    private Integer householdGoods;
    /**
     * 1 yes 2no
     */
    @TableField("RESIDENTIAL_DELIVERY")
    private Integer residentialDelivery;
    /**
     * 1 yes 2no
     */
    @TableField("TSA")
    private Integer tsa;
    /**
     * 1 yes 2no
     */
    @TableField("AMAZON")
    private Integer amazon;
    /**
     * 1 yes 2no
     */
    @TableField("TRANSLOAD_SERVICE")
    private Integer transloadService;
    /**
     * 1 yes 2no
     */
    @TableField("CHAINS")
    private Integer chains;
    /**
     * 1 yes 2no
     */
    @TableField("CONTAINER_SIZES")
    private String containerSizes;
    /**
     * 1 yes 2no
     */
    @TableField("OCEAN_PORT_DRAYAGE")
    private Integer oceanPortDrayage;
    /**
     * 1 yes 2no
     */
    @TableField("RAIL_RAMP_DRAYAGE")
    private Integer railRampDrayage;
    /**
     * 1 yes 2no
     */
    @TableField("DRY_CONTAINER_DRAYAGE")
    private Integer dryContainerDrayage;
    /**
     * 1 yes 2no
     */
    @TableField("REEFER_DRAYAGE")
    private Integer reeferDrayage;
    /**
     * 1 yes 2no
     */
    @TableField("OPEN_TOP_DRAYAGE")
    private Integer openTopDrayage;
    /**
     * 1 yes 2no
     */
    @TableField("TANK_ENDORSED_DRAYAGE")
    private Integer tankEndorsedDrayage;
    /**
     * 1 yes 2no
     */
    @TableField("ISO_TANK_DRAYAGE")
    private Integer isoTankDrayage;
    /**
     * 1 yes 2no
     */
    @TableField("PRIVATE_CHASSIS")
    private Integer privateChassis;
    /**
     * -1 NO
     */
    @TableField("TWIC")
    private Integer twic;
    /**
     * 1 yes 2no
     */
    @TableField("ELD")
    private Integer eld;
    /**
     * 1 korean 2english 3japanese 4chinese 5russian
     */
    private Integer language;
    /**
     * 1 yes 2no
     */
    @TableField("GP")
    private Integer gp;
    /**
     * 1 yes 2no
     */
    @TableField("HQ")
    private Integer hq;
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    @TableField("remark")
    private String remark;
    /**
     * 1 yes 2no
     */
    @TableField("HC")
    private Integer hc;
    /**
     * 1 yes 2no
     */
    @TableField("RF")
    private Integer rf;
    /**
     * 1 yes 2no
     */
    @TableField("RH")
    private Integer rh;
    /**
     * 1 yes 2no
     */
    @TableField("OT")
    private Integer ot;
    /**
     * 1 yes 2no
     */
    @TableField("TK")
    private Integer tk;
    /**
     * 1 yes 2no
     */
    @TableField("FR")
    private Integer fr;
    /**
     * 1 yes 2no
     */
    @TableField("DG")
    private Integer dg;
    /**
     * 1 yes 2no
     */
    private Integer class1;
    /**
     * 1 yes 2no
     */
    private Integer class2;
    /**
     * 1 yes 2no
     */
    private Integer class3;
    /**
     * 1 yes 2no
     */
    private Integer class4;
    /**
     * 1 yes 2no
     */
    private Integer class5;
    /**
     * 1 yes 2no
     */
    private Integer class6;
    /**
     * 1 yes 2no
     */
    private Integer class7;
    /**
     * 1 yes 2no
     */
    private Integer class8;
 
    public Integer getRemove() {
        return remove;
    }
 
    public void setRemove(Integer remove) {
        this.remove = remove;
    }
 
    /**
     * 1 yes 2no
     */
    private Integer class9;
 
    private Integer remove;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getDescribe() {
        return describe;
    }
 
    public void setDescribe(String describe) {
        this.describe = describe;
    }
 
    public String getHeadImg() {
        return headImg;
    }
 
    public void setHeadImg(String headImg) {
        this.headImg = headImg;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getScacCode() {
        return scacCode;
    }
 
    public void setScacCode(String scacCode) {
        this.scacCode = scacCode;
    }
 
    public String getContactPhone() {
        return contactPhone;
    }
 
    public void setContactPhone(String contactPhone) {
        this.contactPhone = contactPhone;
    }
 
    public String getContactEmail() {
        return contactEmail;
    }
 
    public void setContactEmail(String contactEmail) {
        this.contactEmail = contactEmail;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public Integer getMcNumber() {
        return mcNumber;
    }
 
    public void setMcNumber(Integer mcNumber) {
        this.mcNumber = mcNumber;
    }
 
    public String getUsdot() {
        return usdot;
    }
 
    public void setUsdot(String usdot) {
        this.usdot = usdot;
    }
 
    public String getSetUpTheTime() {
        return setUpTheTime;
    }
 
    public void setSetUpTheTime(String setUpTheTime) {
        this.setUpTheTime = setUpTheTime;
    }
 
    public String getLogisticsContactName() {
        return logisticsContactName;
    }
 
    public void setLogisticsContactName(String logisticsContactName) {
        this.logisticsContactName = logisticsContactName;
    }
 
    public String getLogisticsContactEmail() {
        return logisticsContactEmail;
    }
 
    public void setLogisticsContactEmail(String logisticsContactEmail) {
        this.logisticsContactEmail = logisticsContactEmail;
    }
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public Date getExpirationTime() {
        return expirationTime;
    }
 
    public void setExpirationTime(Date expirationTime) {
        this.expirationTime = expirationTime;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getHAZMAT() {
        return HAZMAT;
    }
 
    public void setHAZMAT(Integer HAZMAT) {
        this.HAZMAT = HAZMAT;
    }
 
    public Integer getOverweightPermit() {
        return overweightPermit;
    }
 
    public void setOverweightPermit(Integer overweightPermit) {
        this.overweightPermit = overweightPermit;
    }
 
    public Integer getLiquor() {
        return liquor;
    }
 
    public void setLiquor(Integer liquor) {
        this.liquor = liquor;
    }
 
    public Integer getHouseholdGoods() {
        return householdGoods;
    }
 
    public void setHouseholdGoods(Integer householdGoods) {
        this.householdGoods = householdGoods;
    }
 
    public Integer getResidentialDelivery() {
        return residentialDelivery;
    }
 
    public void setResidentialDelivery(Integer residentialDelivery) {
        this.residentialDelivery = residentialDelivery;
    }
 
    public Integer getTsa() {
        return tsa;
    }
 
    public void setTsa(Integer tsa) {
        this.tsa = tsa;
    }
 
    public Integer getAmazon() {
        return amazon;
    }
 
    public void setAmazon(Integer amazon) {
        this.amazon = amazon;
    }
 
    public Integer getTransloadService() {
        return transloadService;
    }
 
    public void setTransloadService(Integer transloadService) {
        this.transloadService = transloadService;
    }
 
    public Integer getChains() {
        return chains;
    }
 
    public void setChains(Integer chains) {
        this.chains = chains;
    }
 
    public String getContainerSizes() {
        return containerSizes;
    }
 
    public void setContainerSizes(String containerSizes) {
        this.containerSizes = containerSizes;
    }
 
    public Integer getOceanPortDrayage() {
        return oceanPortDrayage;
    }
 
    public void setOceanPortDrayage(Integer oceanPortDrayage) {
        this.oceanPortDrayage = oceanPortDrayage;
    }
 
    public Integer getRailRampDrayage() {
        return railRampDrayage;
    }
 
    public void setRailRampDrayage(Integer railRampDrayage) {
        this.railRampDrayage = railRampDrayage;
    }
 
    public Integer getDryContainerDrayage() {
        return dryContainerDrayage;
    }
 
    public void setDryContainerDrayage(Integer dryContainerDrayage) {
        this.dryContainerDrayage = dryContainerDrayage;
    }
 
    public Integer getReeferDrayage() {
        return reeferDrayage;
    }
 
    public void setReeferDrayage(Integer reeferDrayage) {
        this.reeferDrayage = reeferDrayage;
    }
 
    public Integer getOpenTopDrayage() {
        return openTopDrayage;
    }
 
    public void setOpenTopDrayage(Integer openTopDrayage) {
        this.openTopDrayage = openTopDrayage;
    }
 
    public Integer getTankEndorsedDrayage() {
        return tankEndorsedDrayage;
    }
 
    public void setTankEndorsedDrayage(Integer tankEndorsedDrayage) {
        this.tankEndorsedDrayage = tankEndorsedDrayage;
    }
 
    public Integer getIsoTankDrayage() {
        return isoTankDrayage;
    }
 
    public void setIsoTankDrayage(Integer isoTankDrayage) {
        this.isoTankDrayage = isoTankDrayage;
    }
 
    public Integer getPrivateChassis() {
        return privateChassis;
    }
 
    public void setPrivateChassis(Integer privateChassis) {
        this.privateChassis = privateChassis;
    }
 
    public Integer getTwic() {
        return twic;
    }
 
    public void setTwic(Integer twic) {
        this.twic = twic;
    }
 
    public Integer getEld() {
        return eld;
    }
 
    public void setEld(Integer eld) {
        this.eld = eld;
    }
 
    public Integer getLanguage() {
        return language;
    }
 
    public void setLanguage(Integer language) {
        this.language = language;
    }
 
    public Integer getGp() {
        return gp;
    }
 
    public void setGp(Integer gp) {
        this.gp = gp;
    }
 
    public Integer getHq() {
        return hq;
    }
 
    public void setHq(Integer hq) {
        this.hq = hq;
    }
 
    public Integer getHc() {
        return hc;
    }
 
    public void setHc(Integer hc) {
        this.hc = hc;
    }
 
    public Integer getRf() {
        return rf;
    }
 
    public void setRf(Integer rf) {
        this.rf = rf;
    }
 
    public Integer getRh() {
        return rh;
    }
 
    public void setRh(Integer rh) {
        this.rh = rh;
    }
 
    public Integer getOt() {
        return ot;
    }
 
    public void setOt(Integer ot) {
        this.ot = ot;
    }
 
    public Integer getTk() {
        return tk;
    }
 
    public void setTk(Integer tk) {
        this.tk = tk;
    }
 
    public Integer getFr() {
        return fr;
    }
 
    public void setFr(Integer fr) {
        this.fr = fr;
    }
 
    public Integer getDg() {
        return dg;
    }
 
    public void setDg(Integer dg) {
        this.dg = dg;
    }
 
    public Integer getClass1() {
        return class1;
    }
 
    public void setClass1(Integer class1) {
        this.class1 = class1;
    }
 
    public Integer getClass2() {
        return class2;
    }
 
    public void setClass2(Integer class2) {
        this.class2 = class2;
    }
 
    public Integer getClass3() {
        return class3;
    }
 
    public void setClass3(Integer class3) {
        this.class3 = class3;
    }
 
    public Integer getClass4() {
        return class4;
    }
 
    public void setClass4(Integer class4) {
        this.class4 = class4;
    }
 
    public Integer getClass5() {
        return class5;
    }
 
    public void setClass5(Integer class5) {
        this.class5 = class5;
    }
 
    public Integer getClass6() {
        return class6;
    }
 
    public void setClass6(Integer class6) {
        this.class6 = class6;
    }
 
    public Integer getClass7() {
        return class7;
    }
 
    public void setClass7(Integer class7) {
        this.class7 = class7;
    }
 
    public Integer getClass8() {
        return class8;
    }
 
    public void setClass8(Integer class8) {
        this.class8 = class8;
    }
 
    public Integer getClass9() {
        return class9;
    }
 
    public void setClass9(Integer class9) {
        this.class9 = class9;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "TCompany{" +
                "id=" + id +
                ", describe=" + describe +
                ", headImg=" + headImg +
                ", name=" + name +
                ", scacCode=" + scacCode +
                ", contactPhone=" + contactPhone +
                ", contactEmail=" + contactEmail +
                ", address=" + address +
                ", mcNumber=" + mcNumber +
                ", usdot=" + usdot +
                ", setUpTheTime=" + setUpTheTime +
                ", logisticsContactName=" + logisticsContactName +
                ", logisticsContactEmail=" + logisticsContactEmail +
                ", account=" + account +
                ", password=" + password +
                ", expirationTime=" + expirationTime +
                ", status=" + status +
                ", HAZ-MAT=" + HAZMAT +
                ", overweightPermit=" + overweightPermit +
                ", liquor=" + liquor +
                ", householdGoods=" + householdGoods +
                ", residentialDelivery=" + residentialDelivery +
                ", tsa=" + tsa +
                ", amazon=" + amazon +
                ", transloadService=" + transloadService +
                ", chains=" + chains +
                ", containerSizes=" + containerSizes +
                ", oceanPortDrayage=" + oceanPortDrayage +
                ", railRampDrayage=" + railRampDrayage +
                ", dryContainerDrayage=" + dryContainerDrayage +
                ", reeferDrayage=" + reeferDrayage +
                ", openTopDrayage=" + openTopDrayage +
                ", tankEndorsedDrayage=" + tankEndorsedDrayage +
                ", isoTankDrayage=" + isoTankDrayage +
                ", privateChassis=" + privateChassis +
                ", twic=" + twic +
                ", eld=" + eld +
                ", language=" + language +
                ", gp=" + gp +
                ", hq=" + hq +
                ", hc=" + hc +
                ", rf=" + rf +
                ", rh=" + rh +
                ", ot=" + ot +
                ", tk=" + tk +
                ", fr=" + fr +
                ", dg=" + dg +
                ", class1=" + class1 +
                ", class2=" + class2 +
                ", class3=" + class3 +
                ", class4=" + class4 +
                ", class5=" + class5 +
                ", class6=" + class6 +
                ", class7=" + class7 +
                ", class8=" + class8 +
                ", class9=" + class9 +
                "}";
    }
}