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