177 lines
4.8 KiB
Java
177 lines
4.8 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/8/5 15:26
|
|
* @description:驾驶证认证信息
|
|
*/
|
|
public class IsAuthDriverAuthLicenseBean {
|
|
|
|
private int res;
|
|
private int code;
|
|
private boolean success;
|
|
private String msg;
|
|
private DataDTO data;
|
|
|
|
public int getRes() {
|
|
return res;
|
|
}
|
|
|
|
public void setRes(int res) {
|
|
this.res = res;
|
|
}
|
|
|
|
public int getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(int code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public boolean isSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public void setSuccess(boolean success) {
|
|
this.success = success;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return msg == null ? "" : msg;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
|
|
public DataDTO getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(DataDTO data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
private String archivesName;
|
|
private String driverLicense;
|
|
private String driverLicenseName;
|
|
private String allowType;
|
|
private int driverLicensePhoto;
|
|
private int driverLicenseBackPhoto;
|
|
private String driverLicensePhotoUrl;
|
|
private String driverLicenseBackPhotoUrl;
|
|
private String driverLicenseFirstTime;
|
|
private String driverLicenseValidity;
|
|
private int driverLicenseStatus;
|
|
private String driverLicenseReason;
|
|
private boolean edit;
|
|
|
|
public String getArchivesName() {
|
|
return archivesName == null ? "" : archivesName;
|
|
}
|
|
|
|
public void setArchivesName(String archivesName) {
|
|
this.archivesName = archivesName;
|
|
}
|
|
|
|
public String getDriverLicense() {
|
|
return driverLicense == null ? "" : driverLicense;
|
|
}
|
|
|
|
public void setDriverLicense(String driverLicense) {
|
|
this.driverLicense = driverLicense;
|
|
}
|
|
|
|
public String getDriverLicenseName() {
|
|
return driverLicenseName == null ? "" : driverLicenseName;
|
|
}
|
|
|
|
public void setDriverLicenseName(String driverLicenseName) {
|
|
this.driverLicenseName = driverLicenseName;
|
|
}
|
|
|
|
public String getAllowType() {
|
|
return allowType == null ? "" : allowType;
|
|
}
|
|
|
|
public void setAllowType(String allowType) {
|
|
this.allowType = allowType;
|
|
}
|
|
|
|
public int getDriverLicensePhoto() {
|
|
return driverLicensePhoto;
|
|
}
|
|
|
|
public void setDriverLicensePhoto(int driverLicensePhoto) {
|
|
this.driverLicensePhoto = driverLicensePhoto;
|
|
}
|
|
|
|
public int getDriverLicenseBackPhoto() {
|
|
return driverLicenseBackPhoto;
|
|
}
|
|
|
|
public void setDriverLicenseBackPhoto(int driverLicenseBackPhoto) {
|
|
this.driverLicenseBackPhoto = driverLicenseBackPhoto;
|
|
}
|
|
|
|
public String getDriverLicensePhotoUrl() {
|
|
return driverLicensePhotoUrl == null ? "" : driverLicensePhotoUrl;
|
|
}
|
|
|
|
public void setDriverLicensePhotoUrl(String driverLicensePhotoUrl) {
|
|
this.driverLicensePhotoUrl = driverLicensePhotoUrl;
|
|
}
|
|
|
|
public String getDriverLicenseBackPhotoUrl() {
|
|
return driverLicenseBackPhotoUrl == null ? "" : driverLicenseBackPhotoUrl;
|
|
}
|
|
|
|
public void setDriverLicenseBackPhotoUrl(String driverLicenseBackPhotoUrl) {
|
|
this.driverLicenseBackPhotoUrl = driverLicenseBackPhotoUrl;
|
|
}
|
|
|
|
public String getDriverLicenseFirstTime() {
|
|
return driverLicenseFirstTime == null ? "" : driverLicenseFirstTime;
|
|
}
|
|
|
|
public void setDriverLicenseFirstTime(String driverLicenseFirstTime) {
|
|
this.driverLicenseFirstTime = driverLicenseFirstTime;
|
|
}
|
|
|
|
public String getDriverLicenseValidity() {
|
|
return driverLicenseValidity == null ? "" : driverLicenseValidity;
|
|
}
|
|
|
|
public void setDriverLicenseValidity(String driverLicenseValidity) {
|
|
this.driverLicenseValidity = driverLicenseValidity;
|
|
}
|
|
|
|
public int getDriverLicenseStatus() {
|
|
return driverLicenseStatus;
|
|
}
|
|
|
|
public void setDriverLicenseStatus(int driverLicenseStatus) {
|
|
this.driverLicenseStatus = driverLicenseStatus;
|
|
}
|
|
|
|
public String getDriverLicenseReason() {
|
|
return driverLicenseReason == null ? "" : driverLicenseReason;
|
|
}
|
|
|
|
public void setDriverLicenseReason(String driverLicenseReason) {
|
|
this.driverLicenseReason = driverLicenseReason;
|
|
}
|
|
|
|
public boolean isEdit() {
|
|
return edit;
|
|
}
|
|
|
|
public void setEdit(boolean edit) {
|
|
this.edit = edit;
|
|
}
|
|
}
|
|
}
|