333 lines
8.5 KiB
Java
333 lines
8.5 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/8/4 14:24
|
|
* @description:车辆信息详情实体类
|
|
*/
|
|
public class CarDelBean {
|
|
|
|
private int code;
|
|
private DataDTO data;
|
|
private String msg;
|
|
private int res;
|
|
private boolean success;
|
|
|
|
public int getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(int code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public DataDTO getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(DataDTO data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return msg == null ? "" : msg;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
|
|
public int getRes() {
|
|
return res;
|
|
}
|
|
|
|
public void setRes(int res) {
|
|
this.res = res;
|
|
}
|
|
|
|
public boolean isSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public void setSuccess(boolean success) {
|
|
this.success = success;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
private int auditStatus;
|
|
private String backImage;
|
|
private String carImage;
|
|
private String carNumber;
|
|
private String frontImage;
|
|
private int isTrailer;
|
|
private boolean needRoad;
|
|
private String nfcId;
|
|
private String owner;
|
|
private String roadLicense;
|
|
private String roadLicensePhoto;
|
|
private String roadLicenseSend;
|
|
private String roadLicenseValidity;
|
|
private String threeImage;
|
|
private TrailerResVoDTO trailerResVo;
|
|
private String type;
|
|
private String vehicleNumber;
|
|
private String nfcImage;
|
|
private String registerImage;
|
|
private String registerNo;
|
|
private String carEnergyTypValue;
|
|
private String carPlateColorValue;
|
|
private String needUpQCPhoto;
|
|
|
|
public String getNeedUpQCPhoto() {
|
|
return needUpQCPhoto;
|
|
}
|
|
|
|
public void setNeedUpQCPhoto(String needUpQCPhoto) {
|
|
this.needUpQCPhoto = needUpQCPhoto;
|
|
}
|
|
|
|
public String getCarPlateColorValue() {
|
|
return carPlateColorValue;
|
|
}
|
|
|
|
public void setCarPlateColorValue(String carPlateColorValue) {
|
|
this.carPlateColorValue = carPlateColorValue;
|
|
}
|
|
|
|
public String getCarEnergyTypValue() {
|
|
return carEnergyTypValue;
|
|
}
|
|
|
|
public void setCarEnergyTypValue(String carEnergyTypValue) {
|
|
this.carEnergyTypValue = carEnergyTypValue;
|
|
}
|
|
|
|
public String getRegisterNo() {
|
|
return registerNo;
|
|
}
|
|
|
|
public void setRegisterNo(String registerNo) {
|
|
this.registerNo = registerNo;
|
|
}
|
|
|
|
public String getNfcImage() {
|
|
return nfcImage == null ? "" : nfcImage;
|
|
}
|
|
|
|
public void setNfcImage(String nfcImage) {
|
|
this.nfcImage = nfcImage;
|
|
}
|
|
|
|
public String getRegisterImage() {
|
|
return registerImage == null ? "" : registerImage;
|
|
}
|
|
|
|
public void setRegisterImage(String registerImage) {
|
|
this.registerImage = registerImage;
|
|
}
|
|
|
|
public int getAuditStatus() {
|
|
return auditStatus;
|
|
}
|
|
|
|
public void setAuditStatus(int auditStatus) {
|
|
this.auditStatus = auditStatus;
|
|
}
|
|
|
|
public String getBackImage() {
|
|
return backImage == null ? "" : backImage;
|
|
}
|
|
|
|
public void setBackImage(String backImage) {
|
|
this.backImage = backImage;
|
|
}
|
|
|
|
public String getCarImage() {
|
|
return carImage == null ? "" : carImage;
|
|
}
|
|
|
|
public void setCarImage(String carImage) {
|
|
this.carImage = carImage;
|
|
}
|
|
|
|
public String getCarNumber() {
|
|
return carNumber == null ? "" : carNumber;
|
|
}
|
|
|
|
public void setCarNumber(String carNumber) {
|
|
this.carNumber = carNumber;
|
|
}
|
|
|
|
public String getFrontImage() {
|
|
return frontImage == null ? "" : frontImage;
|
|
}
|
|
|
|
public void setFrontImage(String frontImage) {
|
|
this.frontImage = frontImage;
|
|
}
|
|
|
|
public int getIsTrailer() {
|
|
return isTrailer;
|
|
}
|
|
|
|
public void setIsTrailer(int isTrailer) {
|
|
this.isTrailer = isTrailer;
|
|
}
|
|
|
|
public boolean isNeedRoad() {
|
|
return needRoad;
|
|
}
|
|
|
|
public void setNeedRoad(boolean needRoad) {
|
|
this.needRoad = needRoad;
|
|
}
|
|
|
|
public String getNfcId() {
|
|
return nfcId == null ? "" : nfcId;
|
|
}
|
|
|
|
public void setNfcId(String nfcId) {
|
|
this.nfcId = nfcId;
|
|
}
|
|
|
|
public String getOwner() {
|
|
return owner == null ? "" : owner;
|
|
}
|
|
|
|
public void setOwner(String owner) {
|
|
this.owner = owner;
|
|
}
|
|
|
|
public String getRoadLicense() {
|
|
return roadLicense == null ? "" : roadLicense;
|
|
}
|
|
|
|
public void setRoadLicense(String roadLicense) {
|
|
this.roadLicense = roadLicense;
|
|
}
|
|
|
|
public String getRoadLicensePhoto() {
|
|
return roadLicensePhoto == null ? "" : roadLicensePhoto;
|
|
}
|
|
|
|
public void setRoadLicensePhoto(String roadLicensePhoto) {
|
|
this.roadLicensePhoto = roadLicensePhoto;
|
|
}
|
|
|
|
public String getRoadLicenseSend() {
|
|
return roadLicenseSend == null ? "" : roadLicenseSend;
|
|
}
|
|
|
|
public void setRoadLicenseSend(String roadLicenseSend) {
|
|
this.roadLicenseSend = roadLicenseSend;
|
|
}
|
|
|
|
public String getRoadLicenseValidity() {
|
|
return roadLicenseValidity == null ? "" : roadLicenseValidity;
|
|
}
|
|
|
|
public void setRoadLicenseValidity(String roadLicenseValidity) {
|
|
this.roadLicenseValidity = roadLicenseValidity;
|
|
}
|
|
|
|
public String getThreeImage() {
|
|
return threeImage == null ? "" : threeImage;
|
|
}
|
|
|
|
public void setThreeImage(String threeImage) {
|
|
this.threeImage = threeImage;
|
|
}
|
|
|
|
public TrailerResVoDTO getTrailerResVo() {
|
|
return trailerResVo;
|
|
}
|
|
|
|
public void setTrailerResVo(TrailerResVoDTO trailerResVo) {
|
|
this.trailerResVo = trailerResVo;
|
|
}
|
|
|
|
public String getType() {
|
|
return type == null ? "" : type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getVehicleNumber() {
|
|
return vehicleNumber == null ? "" : vehicleNumber;
|
|
}
|
|
|
|
public void setVehicleNumber(String vehicleNumber) {
|
|
this.vehicleNumber = vehicleNumber;
|
|
}
|
|
|
|
public static class TrailerResVoDTO {
|
|
private String backImage;
|
|
private String carNumber;
|
|
private String frontImage;
|
|
private String owner;
|
|
private String threeImage;
|
|
private String type;
|
|
private String vehicleNumber;
|
|
|
|
public String getBackImage() {
|
|
return backImage == null ? "" : backImage;
|
|
}
|
|
|
|
public void setBackImage(String backImage) {
|
|
this.backImage = backImage;
|
|
}
|
|
|
|
public String getCarNumber() {
|
|
return carNumber == null ? "" : carNumber;
|
|
}
|
|
|
|
public void setCarNumber(String carNumber) {
|
|
this.carNumber = carNumber;
|
|
}
|
|
|
|
public String getFrontImage() {
|
|
return frontImage == null ? "" : frontImage;
|
|
}
|
|
|
|
public void setFrontImage(String frontImage) {
|
|
this.frontImage = frontImage;
|
|
}
|
|
|
|
public String getOwner() {
|
|
return owner == null ? "" : owner;
|
|
}
|
|
|
|
public void setOwner(String owner) {
|
|
this.owner = owner;
|
|
}
|
|
|
|
public String getThreeImage() {
|
|
return threeImage == null ? "" : threeImage;
|
|
}
|
|
|
|
public void setThreeImage(String threeImage) {
|
|
this.threeImage = threeImage;
|
|
}
|
|
|
|
public String getType() {
|
|
return type == null ? "" : type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getVehicleNumber() {
|
|
return vehicleNumber == null ? "" : vehicleNumber;
|
|
}
|
|
|
|
public void setVehicleNumber(String vehicleNumber) {
|
|
this.vehicleNumber = vehicleNumber;
|
|
}
|
|
}
|
|
}
|
|
}
|