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 ww . j a v a2 s .com*/ /** * @ClassName: Response1010 * @Package: * @company ShenZhen anlongs Technology CO.,LTD. * @Description: TODO ??????????????? * @author anlong * @date 2013-4-24 ????3:52:46 * @version V1.0 */ public class Response1000 { /**??*/ private Integer SendType; /**??????*/ private String fileCode; /**?????*/ private Integer fileSize; /** * ?????1-??????,2-?????,3-????? */ private Byte imageType; /**?????*/ private Short rtCode; /**??????*/ private String rtMsg; private String[] fieldArr = {"SendType","fileCode","fileSize","imageType","rtCode","rtMsg"}; public Integer getSendType() { return SendType; } public void setSendType(Integer sendType) { SendType = sendType; } public String getFileCode() { return fileCode; } public void setFileCode(String fileCode) { this.fileCode = fileCode; } public Integer getFileSize() { return fileSize; } public void setFileSize(Integer fileSize) { this.fileSize = fileSize; } public Short getRtCode() { return rtCode; } public void setRtCode(Short rtCode) { this.rtCode = rtCode; } public String getRtMsg() { return rtMsg; } public void setRtMsg(String rtMsg) { this.rtMsg = rtMsg; } public Byte getImageType() { return imageType; } public void setImageType(Byte imageType) { this.imageType = imageType; } @Override public String toString() { return "Response1000 [getSendType()=" + getSendType() + ", getFileCode()=" + getFileCode() + ", getFileSize()=" + getFileSize() + ", getRtCode()=" + getRtCode() + ", getRtMsg()=" + getRtMsg() + ", getImageType()=" + getImageType() + "]"; } }