river-lucky-driver/app/src/main/java/com/arpa/hndahesudintocctmsdriver/bean/UpAppBean.java
2022-08-24 09:32:54 +08:00

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;
}
}
}