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.response; //from ww w . java2 s. c o m /** * @Title: BaseResponse.java * @Package com.anlong.msgserver.entity.request * @company ShenZhen anlong Technology CO.,LTD. * @author anlong * @date 2013-4-17 * @version V1.0 * @Description:????????????? */ public class BaseResponse { /**?????? ??????????*/ private Integer msgSize; /**?????????*/ private Short bCode; /**??????*/ private Integer key; /**??ID*/ private Integer uid; /**?????*/ private Short rtCode; /**??????*/ private String rtMsg; /**??????????*/ private Integer msgSerial; public Integer getMsgSize() { return msgSize; } public void setMsgSize(Integer msgSize) { this.msgSize = msgSize; } public Short getBCode() { return bCode; } public void setBCode(Short bCode) { this.bCode = bCode; } public Integer getKey() { return key; } public void setKey(Integer key) { this.key = key; } public Integer getUid() { return uid; } public void setUid(Integer uid) { this.uid = uid; } public Short getRtCode() { return rtCode; } public void setRtCode(Short rtCode) { this.rtCode = rtCode; } public String getRtMsg() { return rtMsg; } public void setRtMsg(String rtMsg) { this.rtMsg = rtMsg; } public Integer getMsgSerial() { return msgSerial; } public void setMsgSerial(Integer msgSerial) { this.msgSerial = msgSerial; } /** ????????*/ public void init(Integer msgSize,Short bCode,Integer key,Integer uid,Short rtCode,String rtMsg,Integer msgSerial){ this.msgSize = msgSize; this.bCode = bCode; this.key = key; this.uid = uid; this.rtCode = rtCode; this.rtMsg = rtMsg; this.msgSerial = msgSerial; } }