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 w w . j a v a 2s . c o m*/ /** * @Title: Response1030.java * @Package com.anlong.msghandle.response * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????4:58:38 * @version V1.0 * @Description: ?? */ public class Response1030 extends BaseResponse { /** ???? */ private Integer onlineNum; /** ????????? */ private String dateTime; private String[] fieldArr = {"onlineNum","dateTime"}; public Integer getOnlineNum() { return onlineNum; } public void setOnlineNum(Integer onlineNum) { this.onlineNum = onlineNum; } public String getDateTime() { return dateTime; } public void setDateTime(String dateTime) { this.dateTime = dateTime; } @Override public String toString() { return "Response1030 [onlineNum=" + onlineNum + ", dateTime=" + dateTime + "]"; } }