96 lines
2.2 KiB
Java
96 lines
2.2 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2022/2/10 17:12
|
|
* @description:
|
|
*/
|
|
public class DriverExpireBean {
|
|
|
|
private int code;
|
|
private DataDTO data;
|
|
private String msg;
|
|
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;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
|
|
public boolean isSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public void setSuccess(boolean success) {
|
|
this.success = success;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
private String driverLicenseUpdateUrl;
|
|
private String idCardUpdateUrl;
|
|
private String qualificationUpdateUrl;
|
|
private String roadLicenseUpdateUrl;
|
|
private String insuranceUpdateUrl;
|
|
|
|
public String getRoadLicenseUpdateUrl() {
|
|
return roadLicenseUpdateUrl;
|
|
}
|
|
|
|
public void setRoadLicenseUpdateUrl(String roadLicenseUpdateUrl) {
|
|
this.roadLicenseUpdateUrl = roadLicenseUpdateUrl;
|
|
}
|
|
|
|
public String getInsuranceUpdateUrl() {
|
|
return insuranceUpdateUrl;
|
|
}
|
|
|
|
public void setInsuranceUpdateUrl(String insuranceUpdateUrl) {
|
|
this.insuranceUpdateUrl = insuranceUpdateUrl;
|
|
}
|
|
|
|
public String getQualificationUpdateUrl() {
|
|
return qualificationUpdateUrl;
|
|
}
|
|
|
|
public void setQualificationUpdateUrl(String qualificationUpdateUrl) {
|
|
this.qualificationUpdateUrl = qualificationUpdateUrl;
|
|
}
|
|
|
|
public String getDriverLicenseUpdateUrl() {
|
|
return driverLicenseUpdateUrl;
|
|
}
|
|
|
|
public void setDriverLicenseUpdateUrl(String driverLicenseUpdateUrl) {
|
|
this.driverLicenseUpdateUrl = driverLicenseUpdateUrl;
|
|
}
|
|
|
|
public String getIdCardUpdateUrl() {
|
|
return idCardUpdateUrl;
|
|
}
|
|
|
|
public void setIdCardUpdateUrl(String idCardUpdateUrl) {
|
|
this.idCardUpdateUrl = idCardUpdateUrl;
|
|
}
|
|
}
|
|
}
|