69 lines
1.4 KiB
Java
69 lines
1.4 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;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|