Back to project page msghandle.
The source code is released under:
GNU General Public License
If you think the Android project msghandle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.anlong.msghandle.vo; /*from www . ja v a 2 s . c o m*/ import java.util.Date; /** * @Title: Application.java * @Package com.anlong.msghandle.vo * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????3:38:24 * @version V1.0 * @Description: TODO */ public class Application { /** ??ID */ private Integer appId; /** ?????? */ private String appName; /** ????:1-APP,2-WEB??????,3-?????? */ private Byte appType; /** 1-?????:1??????2?????3 ?????? */ private Byte appState; /** ??LOGO ???LOGO???????80x80? */ private String appLogo; /** ???? */ private String appProfile; /** ???WEB??????(???????:2WEB??) */ private String webPath; /** 1-??????? 1-??????;????2-??????; */ private Byte authType; /** ????????????uid={1}&pwd={2}?? **/ private String authParam; /** 1-??? 1-10????????????????? */ private Byte priority; /** ??????????? **/ private String updateTime; /** ???????????? */ private String clientPath; /** ??????????1.0.0.6? */ private String version; /** ??????? */ private String intro; /** ??????? */ private String uploadTime; /** * ????????????????????????????? 1:??????? 4:APP????ID 5:android????? */ private String uniqueKey; private String[] fieldArr = { "appId", "appName", "appType", "appState", "appLogo", "appProfile", "webPath", "authType", "authParam", "priority", "updateTime", "clientPath", "version", "intro", "uploadTime", "uniqueKey" }; public Integer getAppId() { return appId; } public void setAppId(Integer appId) { this.appId = appId; } public String getAppName() { return appName; } public void setAppName(String appName) { this.appName = appName; } public Byte getAppType() { return appType; } public void setAppType(Byte appType) { this.appType = appType; } public Byte getAppState() { return appState; } public void setAppState(Byte appState) { this.appState = appState; } public String getAppLogo() { return appLogo; } public void setAppLogo(String appLogo) { this.appLogo = appLogo; } public String getAppProfile() { return appProfile; } public void setAppProfile(String appProfile) { this.appProfile = appProfile; } public String getWebPath() { return webPath; } public void setWebPath(String webPath) { this.webPath = webPath; } public Byte getAuthType() { return authType; } public void setAuthType(Byte authType) { this.authType = authType; } public String getAuthParam() { return authParam; } public void setAuthParam(String authParam) { this.authParam = authParam; } public Byte getPriority() { return priority; } public void setPriority(Byte priority) { this.priority = priority; } public String getUpdateTime() { return updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getClientPath() { return clientPath; } public void setClientPath(String clientPath) { this.clientPath = clientPath; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getIntro() { return intro; } public void setIntro(String intro) { this.intro = intro; } public String getUploadTime() { return uploadTime; } public void setUploadTime(String uploadTime) { this.uploadTime = uploadTime; } public String getUniqueKey() { return uniqueKey; } public void setUniqueKey(String uniqueKey) { this.uniqueKey = uniqueKey; } @Override public String toString() { return "Application [getAppId()=" + getAppId() + ", getAppName()=" + getAppName() + ", getAppType()=" + getAppType() + ", getAppState()=" + getAppState() + ", getAppLogo()=" + getAppLogo() + ", getAppProfile()=" + getAppProfile() + ", getWebPath()=" + getWebPath() + ", getAuthType()=" + getAuthType() + ", getAuthParam()=" + getAuthParam() + ", getPriority()=" + getPriority() + ", getUpdateTime()=" + getUpdateTime() + ", getClientPath()=" + getClientPath() + ", getVersion()=" + getVersion() + ", getIntro()=" + getIntro() + ", getUploadTime()=" + getUploadTime() + ", getUniqueKey()=" + getUniqueKey() + ", toString()=" + super.toString() + "]"; } }