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.request; /*from w ww . j av a 2s.com*/ /** * @Title: Request102.java * @Package com.anlong.msghandle.request * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????5:12:54 * @version V1.0 * @Description: ??????????????? */ public class Request102 extends BaseRequest { /** * ????? 0?? 1 ?? 2?? 3?? 4??? */ private Byte onlineState; /** * ????? 1??IM?????? 2??WEB????? 3????WAP??? 4??????IM? 5????????IM? 6????OA? */ private Byte loginType; private String[] fieldArr = {"onlineState","loginType"}; 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 "EI102 [onlineState=" + onlineState + ", loginType=" + loginType + ", toString()=" + super.toString() + "]"; } }