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 w ww . ja v a 2 s .c o m*/ import java.util.List; import com.anlong.msghandle.vo.OnlineUser; /** * @Title: Response1100.java * @Package com.anlong.msghandle.response * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????4:59:29 * @version V1.0 * @Description: ?????? */ class Response1100 extends BaseResponse { /** ??ID */ private Integer depId; /** ????ID???? */ private List<OnlineUser> onlineList; private String[] fieldArr = {"depId","onlineList"}; public Integer getDepId() { return depId; } public void setDepId(Integer depId) { this.depId = depId; } public List<OnlineUser> getOnlineList() { return onlineList; } public void setOnlineList(List<OnlineUser> onlineList) { this.onlineList = onlineList; } @Override public String toString() { return "Response1100 [getDepId()=" + getDepId() + ", getOnlineList()=" + getOnlineList() + ", toString()=" + super.toString() + "]"; } }