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 w ww. j ava 2 s .co m*/ /** * @Title: OnlineUser.java * @Package com.anlong.msghandle.vo * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????3:40:41 * @version V1.0 * @Description: ????????,???????????? */ public class OnlineUser { /** ??ID */ private Integer userId; /** ????? : * 1??IM?????? * 2????WAP??? * 3??WEB????? * 4??????IM? * 5????????IM? * 81????????? * 91????OA?*/ private Byte onlineType; private String[] fieldArr = {"userId","onlineType"}; public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } public Byte getOnlineType() { return onlineType; } public void setOnlineType(Byte onlineType) { this.onlineType = onlineType; } @Override public String toString() { return "OnlineUser [userId=" + userId + ", onlineType=" + onlineType + "]"; } }