|
|
@ -104,4 +104,92 @@ public class BaseVehicleVo implements Vo { |
|
|
|
private String certificateStateValue; |
|
|
|
@ApiModelProperty(value = "库龄") |
|
|
|
private Long libraryAge; |
|
|
|
@ApiModelProperty(value = "是否为问题车辆(0无问题 1有问题)") |
|
|
|
private String isProblemVeh; |
|
|
|
|
|
|
|
//车型配置
|
|
|
|
@ApiModelProperty("车身颜色(陕汽必须的字段)") |
|
|
|
private String carColor; |
|
|
|
@ApiModelProperty("驾驶室规格(陕汽必须的字段)") |
|
|
|
private String specification; |
|
|
|
@ApiModelProperty("油箱/气罐(陕汽必须的字段)") |
|
|
|
private String fuelTank; |
|
|
|
@ApiModelProperty("导流罩(陕汽必须的字段)") |
|
|
|
private String baffleModel; |
|
|
|
@ApiModelProperty("独立热源(有、无)") |
|
|
|
private String independentSources; |
|
|
|
@ApiModelProperty("护轮罩(有、无)") |
|
|
|
private String tireCover; |
|
|
|
@ApiModelProperty("鞍座(陕汽必须的字段)") |
|
|
|
private String saddle; |
|
|
|
@ApiModelProperty("空调(陕汽必须的字段)") |
|
|
|
private String airConditioner; |
|
|
|
@ApiModelProperty("其他配置") |
|
|
|
private String otherConfig; |
|
|
|
@ApiModelProperty("后桥速比") |
|
|
|
private String rearAxleRatio; |
|
|
|
@ApiModelProperty("后桥value") |
|
|
|
private String rearAxleValue; |
|
|
|
@ApiModelProperty("轮胎规格") |
|
|
|
private String tireSize; |
|
|
|
@ApiModelProperty("缓速器") |
|
|
|
private String slowMachine; |
|
|
|
@ApiModelProperty("后视镜") |
|
|
|
private String rearViewMirror; |
|
|
|
@ApiModelProperty("轴距(重汽、欧曼)") |
|
|
|
private String wheelbase; |
|
|
|
@ApiModelProperty("悬架(重汽、欧曼)") |
|
|
|
private String suspension; |
|
|
|
@ApiModelProperty("货箱(重汽、欧曼)") |
|
|
|
private String packingCase; |
|
|
|
@ApiModelProperty("座椅(陕汽、欧曼)") |
|
|
|
private String seat; |
|
|
|
@ApiModelProperty("轮毂材质(重汽)") |
|
|
|
private String hubMaterial; |
|
|
|
@ApiModelProperty("配置包(陕汽)") |
|
|
|
private String configuringBao; |
|
|
|
@ApiModelProperty("多媒体(陕汽)") |
|
|
|
private String multimedia; |
|
|
|
@ApiModelProperty("保险杠(欧曼)") |
|
|
|
private String bumper; |
|
|
|
@ApiModelProperty("品牌名称") |
|
|
|
private String brandName; |
|
|
|
@ApiModelProperty("配置编码") |
|
|
|
private String configCode; |
|
|
|
|
|
|
|
//车型
|
|
|
|
@ApiModelProperty("厂商(陕汽必须的字段)") |
|
|
|
private String manufacturer; |
|
|
|
@ApiModelProperty("车辆类型value值") |
|
|
|
private String vehicleTypeValue; |
|
|
|
@ApiModelProperty("产品线value值") |
|
|
|
private String productLineValue; |
|
|
|
@ApiModelProperty(value = "排放标准value值") |
|
|
|
private String emissionStandardValue; |
|
|
|
@ApiModelProperty(value = "驱动形式value值") |
|
|
|
private String driveFormValue; |
|
|
|
@ApiModelProperty(value = "马力value值") |
|
|
|
private String powerValue; |
|
|
|
@ApiModelProperty(value = "变速箱value值") |
|
|
|
private String gearboxTypeValue; |
|
|
|
@ApiModelProperty(value = "燃料种类value值") |
|
|
|
private String fuelTypeValue; |
|
|
|
@ApiModelProperty("车辆版本value值") |
|
|
|
private String vehicleVersionValue; |
|
|
|
@ApiModelProperty(value = "发动机型号value值") |
|
|
|
private String engineTypeValue; |
|
|
|
@ApiModelProperty(value = "规格型号(陕汽特有)") |
|
|
|
private String specifications; |
|
|
|
@ApiModelProperty(value = "系别(欧曼特有)") |
|
|
|
private String department; |
|
|
|
@ApiModelProperty(value = "系别Value(欧曼特有)") |
|
|
|
private String departmentValue; |
|
|
|
@ApiModelProperty(value = "车型别名") |
|
|
|
private String vehicleAlias; |
|
|
|
@ApiModelProperty(value = "车型编码") |
|
|
|
private String vehicleTypeCode; |
|
|
|
@ApiModelProperty(value = "公告型号") |
|
|
|
private String announcementModel; |
|
|
|
@ApiModelProperty(value = "细分市场") |
|
|
|
private String marketSegmentsValue; |
|
|
|
} |
|
|
|