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; /*w ww . j a v a 2s .co m*/ /** * @Title: Response1020.java * @Package com.anlong.msghandle.response * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????4:58:09 * @version V1.0 * @Description: ????? */ public class Response1020 extends BaseResponse { /** ??ID */ private Integer userId; /** ??? 0?? 1 ?? 2?? 3?? 4??? */ private Byte onlineState; /** ???? 1-PC 2-WebIM */ private Byte loginType; private String[] fieldArr = {"userId","onlineState","loginType"}; public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } public Byte getOnlineState() { return onlineState; } public void setOnlineState(Byte onlineState) { this.onlineState = onlineState; } public Byte getLoginType() { return loginType; } public void setLoginType(Byte loginType) { this.loginType = loginType; } @Override public String toString() { return "Response1020 [userId=" + userId + ", onlineState=" + onlineState + ", loginType=" + loginType + "]"; } }