package com.doumee.keyCabinet.bean;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
*
|
*
|
* @author
|
* @email
|
* @date 2023-09-12 16:06:55
|
*/
|
public class AndroidVersionBean implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
//版本号")
|
private Integer versionCode;
|
//版本名称")
|
private String versionName;
|
//更新内容")
|
private String updateContent;
|
//是否必须更新(0:否,1:是)")
|
private String isNeedUpdate;
|
//更新地址")
|
private String updateUrl;
|
|
public Integer getVersionCode() {
|
return versionCode;
|
}
|
|
public void setVersionCode(Integer versionCode) {
|
this.versionCode = versionCode;
|
}
|
|
public String getVersionName() {
|
return versionName;
|
}
|
|
public void setVersionName(String versionName) {
|
this.versionName = versionName;
|
}
|
|
public String getUpdateContent() {
|
return updateContent;
|
}
|
|
public void setUpdateContent(String updateContent) {
|
this.updateContent = updateContent;
|
}
|
|
public String getIsNeedUpdate() {
|
return isNeedUpdate;
|
}
|
|
public void setIsNeedUpdate(String isNeedUpdate) {
|
this.isNeedUpdate = isNeedUpdate;
|
}
|
|
public String getUpdateUrl() {
|
return updateUrl;
|
}
|
|
public void setUpdateUrl(String updateUrl) {
|
this.updateUrl = updateUrl;
|
}
|
}
|