package com.yeshi.appupdate.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
public class UpdateBean {
|
private String id;
|
@Expose
|
private String key;
|
@Expose
|
private String name;
|
private boolean open;
|
@Expose
|
private boolean force;
|
@Expose
|
private int versionCode;
|
@Expose
|
private String version;
|
@Expose
|
private String size;
|
@Expose
|
private String link;// 链接
|
@Expose
|
private String introduction;// 更新内容
|
|
@Expose
|
private boolean showCancel;
|
|
@Expose
|
private boolean silent;//是否强制更新
|
|
private String createtime;
|
|
public boolean isSilent() {
|
return silent;
|
}
|
|
public void setSilent(boolean silent) {
|
this.silent = silent;
|
}
|
|
public String getIntroduction() {
|
return introduction;
|
}
|
|
public void setIntroduction(String introduction) {
|
this.introduction = introduction;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public boolean isOpen() {
|
return open;
|
}
|
|
public void setOpen(boolean open) {
|
this.open = open;
|
}
|
|
public boolean isForce() {
|
return force;
|
}
|
|
public void setForce(boolean force) {
|
this.force = force;
|
}
|
|
public int getVersionCode() {
|
return versionCode;
|
}
|
|
public void setVersionCode(int versionCode) {
|
this.versionCode = versionCode;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getSize() {
|
return size;
|
}
|
|
public void setSize(String size) {
|
this.size = size;
|
}
|
|
public String getLink() {
|
return link;
|
}
|
|
public void setLink(String link) {
|
this.link = link;
|
}
|
|
public boolean isShowCancel() {
|
return showCancel;
|
}
|
|
public void setShowCancel(boolean showCancel) {
|
this.showCancel = showCancel;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|