123 lines
2.5 KiB
Java
123 lines
2.5 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/9/6 18:35
|
|
* @description:
|
|
*/
|
|
public class UpAppBean {
|
|
|
|
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 String content;
|
|
private String delete;
|
|
private String downloadUrl;
|
|
private String force;
|
|
private String source;
|
|
private String type;
|
|
private String version;
|
|
|
|
public String getContent() {
|
|
return content == null ? "" : content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public String getDelete() {
|
|
return delete == null ? "" : delete;
|
|
}
|
|
|
|
public void setDelete(String delete) {
|
|
this.delete = delete;
|
|
}
|
|
|
|
public String getDownloadUrl() {
|
|
return downloadUrl == null ? "" : downloadUrl;
|
|
}
|
|
|
|
public void setDownloadUrl(String downloadUrl) {
|
|
this.downloadUrl = downloadUrl;
|
|
}
|
|
|
|
public String getForce() {
|
|
return force == null ? "" : force;
|
|
}
|
|
|
|
public void setForce(String force) {
|
|
this.force = force;
|
|
}
|
|
|
|
public String getSource() {
|
|
return source == null ? "" : source;
|
|
}
|
|
|
|
public void setSource(String source) {
|
|
this.source = source;
|
|
}
|
|
|
|
public String getType() {
|
|
return type == null ? "" : type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getVersion() {
|
|
return version == null ? "" : version;
|
|
}
|
|
|
|
public void setVersion(String version) {
|
|
this.version = version;
|
|
}
|
|
}
|
|
}
|