/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 版本升级 */ public class D_UT0002 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String upVersion;//升级版本 /** *升级版本 */ public void setUpVersion(String upVersion) { this.upVersion=upVersion; } /** *升级版本 */ public String getUpVersion() { return this.upVersion; } String upMsg;//升级提示信息 /** *升级提示信息 */ public void setUpMsg(String upMsg) { this.upMsg=upMsg; } /** *升级提示信息 */ public String getUpMsg() { return this.upMsg; } String versionSize;//版本大小 /** *版本大小 */ public void setVersionSize(String versionSize) { this.versionSize=versionSize; } /** *版本大小 */ public String getVersionSize() { return this.versionSize; } String downAddress;//下载地址 /** *下载地址 */ public void setDownAddress(String downAddress) { this.downAddress=downAddress; } /** *下载地址 */ public String getDownAddress() { return this.downAddress; } String remind;//是否提醒升级 /** *是否提醒升级 */ public void setRemind(String remind) { this.remind=remind; } /** *是否提醒升级 */ public String getRemind() { return this.remind; } String isForce;//是否强制升级 /** *是否强制升级 */ public void setIsForce(String isForce) { this.isForce=isForce; } /** *是否强制升级 */ public String getIsForce() { return this.isForce; } String isNewest;//是否最新版本 /** *是否最新版本 */ public void setIsNewest(String isNewest) { this.isNewest=isNewest; } /** *是否最新版本 */ public String getIsNewest() { return this.isNewest; } }