zouyu
5 天以前 dcd4f41b63ac7a103b960062434dad13a3e419b7
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
package com.ruoyi.vehicleInformationCollectionReview.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
 
import java.time.LocalDateTime;
import java.util.Date;
import lombok.Data;
 
/**
 * 
 * @TableName vehicle_information_collection_review
 */
@TableName(value ="vehicle_information_collection_review")
@Data
public class VehicleInformationCollectionReview {
    /**
     * 主键id
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 车牌号码
     */
    private String plateNo;
 
    /**
     * 号牌颜色
     */
    private String plateColor;
 
    /**
     * 车辆类型
     */
    private String carType;
 
    /**
     * 车辆识别代码((vin)
     */
    private String carVin;
 
    /**
     * 车辆型号
     */
    private String carModel;
 
    /**
     * 发动机型号
     */
    private String engineModel;
 
    /**
     * 发动机生产厂
     */
    private String engineProductFactory;
 
    /**
     * 发动机编号
     */
    private String engineNo;
 
    /**
     * 排放标准
     */
    private String emissionStandard;
 
    /**
     * 注册登记时间
     */
    private Date registeDate;
 
    /**
     * 使用性质
     */
    private String natureOfUse;
 
    /**
     * 燃油类型
     */
    private String fuelType;
 
    /**
     * 审核状态
     */
    private String reviewStatus;
 
    /**
     * 租户id
     */
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
 
    /**
     * 创建人
     */
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    /**
     * 创建时间
     */
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    /**
     * 更新人
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
 
    /**
     * 更新时间
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
}