xuhy
2025-01-09 712f70b2936079a131ecb1e63c6d337171618cad
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
package com.stylefeng.guns.modular.system.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 lombok.Data;
 
import java.util.Date;
 
/**
* 车辆售卖
* @author pzb
* @Date 2022/5/30 18:50
*/
@Data
@TableName("tb_selling_car")
public class SellingCar {
    //主键
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    //用户类型(1=用户,2=司机,3=企业)
    @TableField("userType")
    private Integer userType;
    //对应用户类型id
    @TableField("userId")
    private Integer userId;
    //标题
    @TableField("title")
    private String title;
    //品牌id
    @TableField("brandId")
    private Integer brandId;
    //品牌名称
    @TableField("brandName")
    private String brandName;
    //类别1=非营运,2=营运
    @TableField("category")
    private Integer category;
    //车辆识别码
    @TableField("carIdentificationCode")
    private String carIdentificationCode;
    //车牌号
    @TableField("carLicensePlate")
    private String carLicensePlate;
    //车辆颜色
    @TableField("carColor")
    private String carColor;
    //上牌时间
    @TableField("licensingTime")
    private String licensingTime;
    //行驶里程
    @TableField("mileage")
    private String mileage;
    //描述
    @TableField("describe")
    private String describe;
    //描述图片
    @TableField("describeImgUrl")
    private String describeImgUrl;
    //联系人电话
    @TableField("contactsPhone")
    private String contactsPhone;
    //联系人名称
    @TableField("contactsName")
    private String contactsName;
    //省code
    @TableField("provinceCode")
    private String provinceCode;
    //市code
    @TableField("cityCode")
    private String cityCode;
    //省名称
    @TableField("provinceName")
    private String provinceName;
    //市名称
    @TableField("cityName")
    private String cityName;
    //创建时间
    @TableField("createTime")
    private Date createTime;
    //状态(1=待审核,2=已上架,3=已下架,4=审核通过待上架,5=已拒绝,6=删除)
    @TableField("status")
    private Integer status;
    //地址
    @TableField("addres")
    private String addres;
    //审核备注
    @TableField("authRemark")
    private String authRemark;
    //图片
    @TableField("imgUrl")
    private String imgUrl;
    //视频
    @TableField("videoUrl")
    private String videoUrl;
    //牌照所在地
    @TableField("locationOfLicensePlate")
    private String locationOfLicensePlate;
    //过户次数
    @TableField("transferTimes")
    private String transferTimes;
    //排量
    @TableField("displacement")
    private String displacement;
    //变速箱
    @TableField("transmissionCase")
    private String transmissionCase;
    //等级
    @TableField("level")
    private String level;
    //转让费
    @TableField("transferPrice")
    private Double transferPrice;
    //是否包含过户费(1=是,2=否)
    @TableField("includingTransferFee")
    private Integer includingTransferFee;
    //新车价格
    @TableField("newCarPrice")
    private Double newCarPrice;
    //交强险到期时间
    @TableField("dueTimeOfCompulsoryInsurance")
    private String dueTimeOfCompulsoryInsurance;
    //年检到期时间
    @TableField("expirationTimeOfAnnualInspection")
    private String expirationTimeOfAnnualInspection;
    //商业险到期时间
    @TableField("maturityTimeOfCommercialInsurance")
    private String maturityTimeOfCommercialInsurance;
    //是否有抵押(1=是,2=否)
    @TableField("mortgage")
    private Integer mortgage;
    //加装配置
    @TableField("installationConfiguration")
    private String installationConfiguration;
    //剩余营运时间
    @TableField("remainingOperationTime")
    private String remainingOperationTime;
    //营运更新时间
    @TableField("operationUpdateTime")
    private String operationUpdateTime;
    //是否首页显示(1=是,2=否)
    @TableField("firstPageShow")
    private Integer firstPageShow;
}