yanghb
2023-04-06 e4874ff3af0c59b6b9a1ee1ae39a332829253cd7
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
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * <p>
 * 卖车
 * </p>
 *
 * @author stylefeng
 * @since 2022-05-10
 */
@ApiModel("卖车信息")
@TableName("tb_selling_car")
public class TbSellingCar extends Model<TbSellingCar> {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty("id")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 用户类型(1=用户,2=司机,3=企业)
     */
    @ApiModelProperty("用户类型(1=用户,2=司机,3=企业)")
    private Integer userType;
    /**
     * 对应用户类型id
     */
    private Integer userId;
    /**
     * 标题
     */
    @ApiModelProperty("标题")
    private String title;
    /**
     * 品牌id
     */
    @ApiModelProperty("品牌id")
    private Integer brandId;
    /**
     * 品牌名称
     */
    @ApiModelProperty("品牌名称")
    private String brandName;
    /**
     * 类别
     */
    @ApiModelProperty("类别1=非营运,2=营运")
    private String category;
    /**
     * 车辆识别码
     */
    @ApiModelProperty("车辆识别码")
    private String carIdentificationCode;
    /**
     * 车牌号
     */
    @ApiModelProperty("车牌号")
    private String carLicensePlate;
    /**
     * 车辆颜色
     */
    @ApiModelProperty("车辆颜色")
    private String carColor;
    /**
     * 上牌时间
     */
    @ApiModelProperty("上牌时间")
    private String licensingTime;
    /**
     * 行驶里程
     */
    @ApiModelProperty("行驶里程")
    private String mileage;
    /**
     * 描述
     */
    @ApiModelProperty("描述")
    private String describe;
    /**
     * 描述图片
     */
    @ApiModelProperty("描述图片")
    private String describeImgUrl;
    /**
     * 联系人电话
     */
    @ApiModelProperty("联系人电话")
    private String contactsPhone;
    /**
     * 联系人名称
     */
    @ApiModelProperty("联系人名称")
    private String contactsName;
    /**
     * 省Code
     */
    @ApiModelProperty("省Code")
    private String provinceCode;
    /**
     * 市Code
     */
    @ApiModelProperty("市Code")
    private String cityCode;
    /**
     * 省名称
     */
    @ApiModelProperty("省名称")
    private String provinceName;
    /**
     * 市名称
     */
    @ApiModelProperty("市名称")
    private String cityName;
    /**
     * 创建时间
     */
    @ApiModelProperty("创建时间")
    private Date createTime;
    /**
     * 状态(1=待审核,2=已上架,3=已下架,4=审核通过待上架,5=已拒绝,6=删除)
     */
    @ApiModelProperty("状态(1=待审核,2=已上架,3=已下架,4=审核通过待上架,5=已拒绝,6=删除)")
    private Integer status;
    /**
     * 地址
     */
    @ApiModelProperty("地址")
    private String addres;
    /**
     * 审核备注
     */
    @ApiModelProperty("审核备注")
    private String authRemark;
    /**
     * 图片
     */
    @ApiModelProperty("图片")
    private String imgUrl;
    /**
     * 视频地址
     */
    @ApiModelProperty("视频地址")
    private String videoUrl;
    /**
     * 牌照所在地
     */
    @ApiModelProperty("牌照所在地")
    private String locationOfLicensePlate;
    /**
     * 过户次数
     */
    @ApiModelProperty("过户次数")
    private String transferTimes;
    /**
     * 排量
     */
    @ApiModelProperty("排量")
    private String displacement;
    /**
     * 变速箱
     */
    @ApiModelProperty("变速箱")
    private String transmissionCase;
    /**
     * 等级
     */
    @ApiModelProperty("等级")
    private String level;
    /**
     * 转让费
     */
    @ApiModelProperty("转让费")
    private BigDecimal transferPrice;
    /**
     * 是否包含过户费(1=是,2=否)
     */
    @ApiModelProperty("是否包含过户费(1=是,2=否)")
    private Integer includingTransferFee;
    /**
     * 新车价格
     */
    @ApiModelProperty("新车价格")
    private BigDecimal newCarPrice;
    /**
     * 交强险到期时间
     */
    @ApiModelProperty("交强险到期时间")
    private String dueTimeOfCompulsoryInsurance;
    /**
     * 连接到期时间
     */
    @ApiModelProperty("年检到期时间")
    private String expirationTimeOfAnnualInspection;
    /**
     * 商业险到期时间
     */
    @ApiModelProperty("商业险到期时间")
    private String maturityTimeOfCommercialInsurance;
    /**
     * 是否有抵押(1=是,2=否)
     */
    @ApiModelProperty("是否有抵押(1=是,2=否)")
    private Integer mortgage;
    /**
     * 加装配置
     */
    @ApiModelProperty("加装配置")
    private String installationConfiguration;
    /**
     * 剩余营运时间
     */
    @ApiModelProperty("剩余营运时间")
    private String remainingOperationTime;
    /**
     * 营运更新时间
     */
    @ApiModelProperty("营运更新时间")
    private String operationUpdateTime;
 
 
    /**
     * 是否已实名(1:否,2:是)
     */
    @ApiModelProperty("是否已实名(1:否,2:是)")
    @TableField(exist = false)
    private Integer isAuth;
 
    public Integer getIsAuth() {
        return isAuth;
    }
 
    public void setIsAuth(Integer isAuth) {
        this.isAuth = isAuth;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getUserType() {
        return userType;
    }
 
    public void setUserType(Integer userType) {
        this.userType = userType;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Integer getBrandId() {
        return brandId;
    }
 
    public void setBrandId(Integer brandId) {
        this.brandId = brandId;
    }
 
    public String getBrandName() {
        return brandName;
    }
 
    public void setBrandName(String brandName) {
        this.brandName = brandName;
    }
 
    public String getCategory() {
        return category;
    }
 
    public void setCategory(String category) {
        this.category = category;
    }
 
    public String getCarIdentificationCode() {
        return carIdentificationCode;
    }
 
    public void setCarIdentificationCode(String carIdentificationCode) {
        this.carIdentificationCode = carIdentificationCode;
    }
 
    public String getCarLicensePlate() {
        return carLicensePlate;
    }
 
    public void setCarLicensePlate(String carLicensePlate) {
        this.carLicensePlate = carLicensePlate;
    }
 
    public String getCarColor() {
        return carColor;
    }
 
    public void setCarColor(String carColor) {
        this.carColor = carColor;
    }
 
    public String getLicensingTime() {
        return licensingTime;
    }
 
    public void setLicensingTime(String licensingTime) {
        this.licensingTime = licensingTime;
    }
 
    public String getMileage() {
        return mileage;
    }
 
    public void setMileage(String mileage) {
        this.mileage = mileage;
    }
 
    public String getDescribe() {
        return describe;
    }
 
    public void setDescribe(String describe) {
        this.describe = describe;
    }
 
    public String getDescribeImgUrl() {
        return describeImgUrl;
    }
 
    public void setDescribeImgUrl(String describeImgUrl) {
        this.describeImgUrl = describeImgUrl;
    }
 
    public String getContactsPhone() {
        return contactsPhone;
    }
 
    public void setContactsPhone(String contactsPhone) {
        this.contactsPhone = contactsPhone;
    }
 
    public String getContactsName() {
        return contactsName;
    }
 
    public void setContactsName(String contactsName) {
        this.contactsName = contactsName;
    }
 
    public String getProvinceCode() {
        return provinceCode;
    }
 
    public void setProvinceCode(String provinceCode) {
        this.provinceCode = provinceCode;
    }
 
    public String getCityCode() {
        return cityCode;
    }
 
    public void setCityCode(String cityCode) {
        this.cityCode = cityCode;
    }
 
    public String getProvinceName() {
        return provinceName;
    }
 
    public void setProvinceName(String provinceName) {
        this.provinceName = provinceName;
    }
 
    public String getCityName() {
        return cityName;
    }
 
    public void setCityName(String cityName) {
        this.cityName = cityName;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getAddres() {
        return addres;
    }
 
    public void setAddres(String addres) {
        this.addres = addres;
    }
 
    public String getAuthRemark() {
        return authRemark;
    }
 
    public void setAuthRemark(String authRemark) {
        this.authRemark = authRemark;
    }
 
    public String getImgUrl() {
        return imgUrl;
    }
 
    public void setImgUrl(String imgUrl) {
        this.imgUrl = imgUrl;
    }
 
    public String getVideoUrl() {
        return videoUrl;
    }
 
    public void setVideoUrl(String videoUrl) {
        this.videoUrl = videoUrl;
    }
 
    public String getLocationOfLicensePlate() {
        return locationOfLicensePlate;
    }
 
    public void setLocationOfLicensePlate(String locationOfLicensePlate) {
        this.locationOfLicensePlate = locationOfLicensePlate;
    }
 
    public String getTransferTimes() {
        return transferTimes;
    }
 
    public void setTransferTimes(String transferTimes) {
        this.transferTimes = transferTimes;
    }
 
    public String getDisplacement() {
        return displacement;
    }
 
    public void setDisplacement(String displacement) {
        this.displacement = displacement;
    }
 
    public String getTransmissionCase() {
        return transmissionCase;
    }
 
    public void setTransmissionCase(String transmissionCase) {
        this.transmissionCase = transmissionCase;
    }
 
    public String getLevel() {
        return level;
    }
 
    public void setLevel(String level) {
        this.level = level;
    }
 
    public BigDecimal getTransferPrice() {
        return transferPrice;
    }
 
    public void setTransferPrice(BigDecimal transferPrice) {
        this.transferPrice = transferPrice;
    }
 
    public Integer getIncludingTransferFee() {
        return includingTransferFee;
    }
 
    public void setIncludingTransferFee(Integer includingTransferFee) {
        this.includingTransferFee = includingTransferFee;
    }
 
    public BigDecimal getNewCarPrice() {
        return newCarPrice;
    }
 
    public void setNewCarPrice(BigDecimal newCarPrice) {
        this.newCarPrice = newCarPrice;
    }
 
    public String getDueTimeOfCompulsoryInsurance() {
        return dueTimeOfCompulsoryInsurance;
    }
 
    public void setDueTimeOfCompulsoryInsurance(String dueTimeOfCompulsoryInsurance) {
        this.dueTimeOfCompulsoryInsurance = dueTimeOfCompulsoryInsurance;
    }
 
    public String getExpirationTimeOfAnnualInspection() {
        return expirationTimeOfAnnualInspection;
    }
 
    public void setExpirationTimeOfAnnualInspection(String expirationTimeOfAnnualInspection) {
        this.expirationTimeOfAnnualInspection = expirationTimeOfAnnualInspection;
    }
 
    public String getMaturityTimeOfCommercialInsurance() {
        return maturityTimeOfCommercialInsurance;
    }
 
    public void setMaturityTimeOfCommercialInsurance(String maturityTimeOfCommercialInsurance) {
        this.maturityTimeOfCommercialInsurance = maturityTimeOfCommercialInsurance;
    }
 
    public Integer getMortgage() {
        return mortgage;
    }
 
    public void setMortgage(Integer mortgage) {
        this.mortgage = mortgage;
    }
 
    public String getInstallationConfiguration() {
        return installationConfiguration;
    }
 
    public void setInstallationConfiguration(String installationConfiguration) {
        this.installationConfiguration = installationConfiguration;
    }
 
    public String getRemainingOperationTime() {
        return remainingOperationTime;
    }
 
    public void setRemainingOperationTime(String remainingOperationTime) {
        this.remainingOperationTime = remainingOperationTime;
    }
 
    public String getOperationUpdateTime() {
        return operationUpdateTime;
    }
 
    public void setOperationUpdateTime(String operationUpdateTime) {
        this.operationUpdateTime = operationUpdateTime;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "TbSellingCar{" +
        "id=" + id +
        ", userType=" + userType +
        ", userId=" + userId +
        ", title=" + title +
        ", brandId=" + brandId +
        ", brandName=" + brandName +
        ", category=" + category +
        ", carIdentificationCode=" + carIdentificationCode +
        ", carLicensePlate=" + carLicensePlate +
        ", carColor=" + carColor +
        ", licensingTime=" + licensingTime +
        ", mileage=" + mileage +
        ", describe=" + describe +
        ", describeImgUrl=" + describeImgUrl +
        ", contactsPhone=" + contactsPhone +
        ", contactsName=" + contactsName +
        ", provinceCode=" + provinceCode +
        ", cityCode=" + cityCode +
        ", provinceName=" + provinceName +
        ", cityName=" + cityName +
        ", createTime=" + createTime +
        ", status=" + status +
        ", addres=" + addres +
        ", authRemark=" + authRemark +
        ", imgUrl=" + imgUrl +
        ", videoUrl=" + videoUrl +
        ", locationOfLicensePlate=" + locationOfLicensePlate +
        ", transferTimes=" + transferTimes +
        ", displacement=" + displacement +
        ", transmissionCase=" + transmissionCase +
        ", level=" + level +
        ", transferPrice=" + transferPrice +
        ", includingTransferFee=" + includingTransferFee +
        ", newCarPrice=" + newCarPrice +
        ", dueTimeOfCompulsoryInsurance=" + dueTimeOfCompulsoryInsurance +
        ", expirationTimeOfAnnualInspection=" + expirationTimeOfAnnualInspection +
        ", maturityTimeOfCommercialInsurance=" + maturityTimeOfCommercialInsurance +
        ", mortgage=" + mortgage +
        ", installationConfiguration=" + installationConfiguration +
        ", remainingOperationTime=" + remainingOperationTime +
        ", operationUpdateTime=" + operationUpdateTime +
        "}";
    }
}