xuhy
2023-08-11 1ec67d10e570856dd15160507dd823ea1b19863e
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
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.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
/**
 * <p>
 * 车辆
 * </p>
 *
 * @author 吕雪
 * @since 2020-06-05
 */
@TableName("t_car")
public class TCar extends Model<TCar> {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 是否是平台车辆(1=是,2=否)
     */
    private Integer isPlatCar;
    /**
     * 公司id
     */
    private Integer companyId;
    /**
     * 加盟商id
     */
    private Integer franchiseeId;
    /**
     * 车辆颜色
     */
    private String carColor;
    /**
     * 车型id
     */
    private Integer carModelId;
    /**
     * 车辆品牌ID
     */
    private Integer carBrandId;
    /**
     * 车牌号
     */
    private String carLicensePlate;
    /**
     * 车牌颜色
     */
    private String plateColor;
    /**
     * 车辆照片
     */
    private String carPhoto;
    /**
     * 车辆类型
     */
    private String vehicleType;
    /**
     * 车辆所有人
     */
    private String ownerName;
    /**
     * 发送机号
     */
    private String engineId;
    /**
     * 车辆VIN码
     */
    private String VIN;
    /**
     * 车辆注册日期
     */
    private Date certifyDateA;
    /**
     * 车辆燃料类型
     */
    private String fuelType;
    /**
     * 发动机排量
     */
    private String engineDisplace;
    /**
     * 运输证字号
     */
    private String certificate;
    /**
     * 车辆运输证发证机构
     */
    private String transAgency;
    /**
     * 车辆经营区域
     */
    private String transArea;
    /**
     * 车辆运输证有效期起
     */
    private Date transDateStart;
    /**
     * 车辆运输证有效期止
     */
    private Date transDateStop;
    /**
     * 车辆初次登记日期
     */
    private Date certifyDateB;
    /**
     * 车辆维修状态(0:未检修,1:已检修,2:未知)
     */
    private Integer fixState;
    /**
     * 车辆下次年检时间
     */
    private Date nextFixDate;
    /**
     * 车辆年度审核状态
     */
    private String checkState;
    /**
     * 发票打印设备序列号
     */
    private String feePrintId;
    /**
     * 卫星定位装置品牌
     */
    private String GPSBrand;
    /**
     * 卫星定位装置型号
     */
    private String GPSModel;
    /**
     * 卫星定位装置IMEI号
     */
    private String GPSIMEI;
    /**
     * 卫星定位装置安装时间
     */
    private Date GPSInstallDate;
    /**
     * 车辆报备日期
     */
    private Date registerDate;
    /**
     * 服务类型(1:网络预约出租车,2:巡游出租汽车,3:私人小客车合乘)
     */
    private Integer commercialType;
    /**
     * 行驶证号
     */
    private String drivingLicenseNumber;
    /**
     * 行驶证照片
     */
    private String drivingLicensePhoto;
    /**
     * 年检到期时间
     */
    private Date annualInspectionTime;
    /**
     * 商业保险到期时间
     */
    private Date commercialInsuranceTime;
    /**
     * 添加时间
     */
    private Date insertTime;
    /**
     * 状态(1=正常,2=删除)
     */
    private Integer state;
    /**
     * 司机来源方式 1=司机注册 2=平台添加 3=分公司添加 4=加盟商添加
     */
    private Integer addType;
    /**
     * 添加司机的分公司/加盟商ID
     */
    private Integer addObjectId;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getIsPlatCar() {
        return isPlatCar;
    }
 
    public void setIsPlatCar(Integer isPlatCar) {
        this.isPlatCar = isPlatCar;
    }
 
    public Integer getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Integer companyId) {
        this.companyId = companyId;
    }
 
    public Integer getFranchiseeId() {
        return franchiseeId;
    }
 
    public void setFranchiseeId(Integer franchiseeId) {
        this.franchiseeId = franchiseeId;
    }
 
    public String getCarColor() {
        return carColor;
    }
 
    public void setCarColor(String carColor) {
        this.carColor = carColor;
    }
 
    public Integer getCarModelId() {
        return carModelId;
    }
 
    public void setCarModelId(Integer carModelId) {
        this.carModelId = carModelId;
    }
 
    public Integer getCarBrandId() {
        return carBrandId;
    }
 
    public void setCarBrandId(Integer carBrandId) {
        this.carBrandId = carBrandId;
    }
 
    public String getCarLicensePlate() {
        return carLicensePlate;
    }
 
    public void setCarLicensePlate(String carLicensePlate) {
        this.carLicensePlate = carLicensePlate;
    }
 
    public String getCarPhoto() {
        return carPhoto;
    }
 
    public void setCarPhoto(String carPhoto) {
        this.carPhoto = carPhoto;
    }
 
    public String getDrivingLicenseNumber() {
        return drivingLicenseNumber;
    }
 
    public void setDrivingLicenseNumber(String drivingLicenseNumber) {
        this.drivingLicenseNumber = drivingLicenseNumber;
    }
 
    public String getDrivingLicensePhoto() {
        return drivingLicensePhoto;
    }
 
    public void setDrivingLicensePhoto(String drivingLicensePhoto) {
        this.drivingLicensePhoto = drivingLicensePhoto;
    }
 
    public Date getAnnualInspectionTime() {
        return annualInspectionTime;
    }
 
    public void setAnnualInspectionTime(Date annualInspectionTime) {
        this.annualInspectionTime = annualInspectionTime;
    }
 
    public Date getCommercialInsuranceTime() {
        return commercialInsuranceTime;
    }
 
    public void setCommercialInsuranceTime(Date commercialInsuranceTime) {
        this.commercialInsuranceTime = commercialInsuranceTime;
    }
 
    public Date getInsertTime() {
        return insertTime;
    }
 
    public void setInsertTime(Date insertTime) {
        this.insertTime = insertTime;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Integer getAddType() {
        return addType;
    }
 
    public void setAddType(Integer addType) {
        this.addType = addType;
    }
 
    public Integer getAddObjectId() {
        return addObjectId;
    }
 
    public void setAddObjectId(Integer addObjectId) {
        this.addObjectId = addObjectId;
    }
 
    public String getPlateColor() {
        return plateColor;
    }
 
    public void setPlateColor(String plateColor) {
        this.plateColor = plateColor;
    }
 
    public String getVehicleType() {
        return vehicleType;
    }
 
    public void setVehicleType(String vehicleType) {
        this.vehicleType = vehicleType;
    }
 
    public String getOwnerName() {
        return ownerName;
    }
 
    public void setOwnerName(String ownerName) {
        this.ownerName = ownerName;
    }
 
    public String getEngineId() {
        return engineId;
    }
 
    public void setEngineId(String engineId) {
        this.engineId = engineId;
    }
 
    public String getVIN() {
        return VIN;
    }
 
    public void setVIN(String VIN) {
        this.VIN = VIN;
    }
 
    public Date getCertifyDateA() {
        return certifyDateA;
    }
 
    public void setCertifyDateA(Date certifyDateA) {
        this.certifyDateA = certifyDateA;
    }
 
    public String getFuelType() {
        return fuelType;
    }
 
    public void setFuelType(String fuelType) {
        this.fuelType = fuelType;
    }
 
    public String getEngineDisplace() {
        return engineDisplace;
    }
 
    public void setEngineDisplace(String engineDisplace) {
        this.engineDisplace = engineDisplace;
    }
 
    public String getCertificate() {
        return certificate;
    }
 
    public void setCertificate(String certificate) {
        this.certificate = certificate;
    }
 
    public String getTransAgency() {
        return transAgency;
    }
 
    public void setTransAgency(String transAgency) {
        this.transAgency = transAgency;
    }
 
    public String getTransArea() {
        return transArea;
    }
 
    public void setTransArea(String transArea) {
        this.transArea = transArea;
    }
 
    public Date getTransDateStart() {
        return transDateStart;
    }
 
    public void setTransDateStart(Date transDateStart) {
        this.transDateStart = transDateStart;
    }
 
    public Date getTransDateStop() {
        return transDateStop;
    }
 
    public void setTransDateStop(Date transDateStop) {
        this.transDateStop = transDateStop;
    }
 
    public Date getCertifyDateB() {
        return certifyDateB;
    }
 
    public void setCertifyDateB(Date certifyDateB) {
        this.certifyDateB = certifyDateB;
    }
 
    public Integer getFixState() {
        return fixState;
    }
 
    public void setFixState(Integer fixState) {
        this.fixState = fixState;
    }
 
    public Date getNextFixDate() {
        return nextFixDate;
    }
 
    public void setNextFixDate(Date nextFixDate) {
        this.nextFixDate = nextFixDate;
    }
 
    public String getCheckState() {
        return checkState;
    }
 
    public void setCheckState(String checkState) {
        this.checkState = checkState;
    }
 
    public String getFeePrintId() {
        return feePrintId;
    }
 
    public void setFeePrintId(String feePrintId) {
        this.feePrintId = feePrintId;
    }
 
    public String getGPSBrand() {
        return GPSBrand;
    }
 
    public void setGPSBrand(String GPSBrand) {
        this.GPSBrand = GPSBrand;
    }
 
    public String getGPSModel() {
        return GPSModel;
    }
 
    public void setGPSModel(String GPSModel) {
        this.GPSModel = GPSModel;
    }
 
    public String getGPSIMEI() {
        return GPSIMEI;
    }
 
    public void setGPSIMEI(String GPSIMEI) {
        this.GPSIMEI = GPSIMEI;
    }
 
    public Date getGPSInstallDate() {
        return GPSInstallDate;
    }
 
    public void setGPSInstallDate(Date GPSInstallDate) {
        this.GPSInstallDate = GPSInstallDate;
    }
 
    public Date getRegisterDate() {
        return registerDate;
    }
 
    public void setRegisterDate(Date registerDate) {
        this.registerDate = registerDate;
    }
 
    public Integer getCommercialType() {
        return commercialType;
    }
 
    public void setCommercialType(Integer commercialType) {
        this.commercialType = commercialType;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "TCar{" +
                "id=" + id +
                ", isPlatCar=" + isPlatCar +
                ", companyId=" + companyId +
                ", franchiseeId=" + franchiseeId +
                ", carColor='" + carColor + '\'' +
                ", carModelId=" + carModelId +
                ", carBrandId=" + carBrandId +
                ", carLicensePlate='" + carLicensePlate + '\'' +
                ", plateColor='" + plateColor + '\'' +
                ", carPhoto='" + carPhoto + '\'' +
                ", vehicleType='" + vehicleType + '\'' +
                ", ownerName='" + ownerName + '\'' +
                ", engineId='" + engineId + '\'' +
                ", VIN='" + VIN + '\'' +
                ", certifyDateA=" + certifyDateA +
                ", fuelType='" + fuelType + '\'' +
                ", engineDisplace='" + engineDisplace + '\'' +
                ", certificate='" + certificate + '\'' +
                ", transAgency='" + transAgency + '\'' +
                ", transArea='" + transArea + '\'' +
                ", transDateStart=" + transDateStart +
                ", transDateStop=" + transDateStop +
                ", certifyDateB=" + certifyDateB +
                ", fixState=" + fixState +
                ", nextFixDate=" + nextFixDate +
                ", checkState='" + checkState + '\'' +
                ", feePrintId='" + feePrintId + '\'' +
                ", GPSBrand='" + GPSBrand + '\'' +
                ", GPSModel='" + GPSModel + '\'' +
                ", GPSIMEI='" + GPSIMEI + '\'' +
                ", GPSInstallDate=" + GPSInstallDate +
                ", registerDate=" + registerDate +
                ", commercialType=" + commercialType +
                ", drivingLicenseNumber='" + drivingLicenseNumber + '\'' +
                ", drivingLicensePhoto='" + drivingLicensePhoto + '\'' +
                ", annualInspectionTime=" + annualInspectionTime +
                ", commercialInsuranceTime=" + commercialInsuranceTime +
                ", insertTime=" + insertTime +
                ", state=" + state +
                ", addType=" + addType +
                ", addObjectId=" + addObjectId +
                '}';
    }
}