package com.dsh.course.model.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 车辆
|
*/
|
@Data
|
public class CarInfoRes {
|
/**
|
* 主键
|
*/
|
private Integer id;
|
/**
|
* 是否是平台车辆(1=是,2=否) 1:Y 2:N
|
*/
|
private Integer isPlatCar;
|
/**
|
* 公司id
|
*/
|
private Integer companyId;
|
/**
|
* 加盟商id
|
*/
|
private Integer franchiseeId;
|
/**
|
* 车辆颜色
|
*/
|
private String carColor;
|
/**
|
* 车型
|
*/
|
private String carModelName;
|
/**
|
* 车辆品牌
|
*/
|
private String carBrandName;
|
/**
|
* 车牌号
|
*/
|
private String carLicensePlate;
|
/**
|
* 车辆照片
|
*/
|
private String carPhoto;
|
/**
|
* 行驶证号
|
*/
|
private String drivingLicenseNumber;
|
/**
|
* 行驶证照片
|
*/
|
private String drivingLicensePhoto;
|
/**
|
* 年检到期时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date annualInspectionTime;
|
/**
|
* 保险照片
|
*/
|
private String insurancePhoto;
|
/**
|
* 商业保险到期时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date commercialInsuranceTime;
|
/**
|
* 添加来源(1=司机注册 2=平台添加 3=分公司添加 4=加盟商添加)
|
* (1=Driver Registration 2=Platform Addition 3=Branch Office Addition 4=Franchisee Addition)
|
*/
|
private Integer addType;
|
/**
|
* 公司id
|
*/
|
private Integer addObjectId;
|
|
}
|