115 lines
2.5 KiB
Java
115 lines
2.5 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/9/11 11:53
|
|
* @description:
|
|
*/
|
|
public class ConfigBean {
|
|
|
|
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 serviceMobile;
|
|
private String privateUrl;
|
|
private String userUrl;
|
|
private String contractUrl;
|
|
private String startImageUrl;
|
|
private String securityUrl;
|
|
|
|
public String getServiceMobile() {
|
|
return serviceMobile == null ? "" : serviceMobile;
|
|
}
|
|
|
|
public void setServiceMobile(String serviceMobile) {
|
|
this.serviceMobile = serviceMobile;
|
|
}
|
|
|
|
public String getPrivateUrl() {
|
|
return privateUrl == null ? "" : privateUrl;
|
|
}
|
|
|
|
public void setPrivateUrl(String privateUrl) {
|
|
this.privateUrl = privateUrl;
|
|
}
|
|
|
|
public String getUserUrl() {
|
|
return userUrl == null ? "" : userUrl;
|
|
}
|
|
|
|
public void setUserUrl(String userUrl) {
|
|
this.userUrl = userUrl;
|
|
}
|
|
|
|
public String getContractUrl() {
|
|
return contractUrl == null ? "" : contractUrl;
|
|
}
|
|
|
|
public void setContractUrl(String contractUrl) {
|
|
this.contractUrl = contractUrl;
|
|
}
|
|
|
|
public String getStartImageUrl() {
|
|
return startImageUrl == null ? "" : startImageUrl;
|
|
}
|
|
|
|
public void setStartImageUrl(String startImageUrl) {
|
|
this.startImageUrl = startImageUrl;
|
|
}
|
|
|
|
public String getSecurityUrl() {
|
|
return securityUrl == null ? "" : securityUrl;
|
|
}
|
|
|
|
public void setSecurityUrl(String securityUrl) {
|
|
this.securityUrl = securityUrl;
|
|
}
|
|
}
|
|
}
|