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 ww. j a v a 2s .c o m /** * @ClassName: Request101 * @Description: TODO ??????????????????? * @author anlong * @date 2013-4-2 ????4:48:03 */ public class Request100 { /** * ????? 1???? 2???? 3???? 4???? */ private Byte operateType; /** * ????? */ private String fileCode; /** * ????? */ private String fileType; /** * ????? */ private Integer fileSize; /** * ???????? */ private String fileUrl; /** * ??????? */ private Integer sendType; /** * ????3?1-??????,2-?????,3-????? * ????4 1.???? 2.???? */ private Byte imageType; public Byte getOperateType() { return operateType; } public void setOperateType(Byte operateType) { this.operateType = operateType; } public String getFileCode() { return fileCode; } public void setFileCode(String fileCode) { this.fileCode = fileCode; } public String getFileType() { return fileType; } public void setFileType(String fileType) { this.fileType = fileType; } public Integer getFileSize() { return fileSize; } public void setFileSize(Integer fileSize) { this.fileSize = fileSize; } public String getFileUrl() { return fileUrl; } public void setFileUrl(String fileUrl) { this.fileUrl = fileUrl; } public Integer getSendType() { return sendType; } public void setSendType(Integer sendType) { this.sendType = sendType; } public Byte getImageType() { return imageType; } public void setImageType(Byte imageType) { this.imageType = imageType; } @Override public String toString() { return "Request100 [getOperateType()=" + getOperateType() + ", getFileCode()=" + getFileCode() + ", getFileType()=" + getFileType() + ", getFileSize()=" + getFileSize() + ", getFileUrl()=" + getFileUrl() + ", getSendType()=" + getSendType() + ", getImageType()=" + getImageType() + "]"; } }