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 ww w. j av a 2 s . c om /** * @Title: Response2030.java * @Package com.anlong.msghandle.response * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????5:00:02 * @version V1.0 * @Description: ????????? */ public class Response2030 extends BaseResponse { /** ?????? */ private String serialNum; private String[] fieldArr = {"serialNum"}; public String getSerialNum() { return serialNum; } public void setSerialNum(String serialNum) { this.serialNum = serialNum; } @Override public String toString() { return "Response2030 [serialNum=" + serialNum + "]"; } }