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; //w w w.j a va2 s . c o m /** * @Title: Request105.java * @Package com.anlong.msghandle.request * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????5:13:41 * @version V1.0 * @Description: ???????????????????? */ public class Request105 extends BaseRequest{ /** ??ID */ private Integer userId; private String[] fieldArr = {"userId"}; public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } @Override public String toString() { return "EI105 [userId=" + userId + ", toString()=" + super.toString() + "]"; } }