96 lines
1.8 KiB
Java
96 lines
1.8 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/8/25 20:04
|
|
* @description:
|
|
*/
|
|
public class CarZhengBean {
|
|
|
|
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 carId;
|
|
private String needUpQCPhoto;
|
|
private String isTrailer;
|
|
private String needUpRLPhoto;
|
|
|
|
public String getNeedUpRLPhoto() {
|
|
return needUpRLPhoto;
|
|
}
|
|
|
|
public void setNeedUpRLPhoto(String needUpRLPhoto) {
|
|
this.needUpRLPhoto = needUpRLPhoto;
|
|
}
|
|
|
|
public String getIsTrailer() {
|
|
return isTrailer;
|
|
}
|
|
|
|
public void setIsTrailer(String isTrailer) {
|
|
this.isTrailer = isTrailer;
|
|
}
|
|
|
|
public String getNeedUpQCPhoto() {
|
|
return needUpQCPhoto;
|
|
}
|
|
|
|
public void setNeedUpQCPhoto(String needUpQCPhoto) {
|
|
this.needUpQCPhoto = needUpQCPhoto;
|
|
}
|
|
|
|
public int getCarId() {
|
|
return carId;
|
|
}
|
|
|
|
public void setCarId(int carId) {
|
|
this.carId = carId;
|
|
}
|
|
}
|
|
}
|