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;
|
}
|