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.vo; //www . j a v a 2 s. com /** * @Title: ReportState.java * @Package com.anlong.msghandle.vo * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????3:40:58 * @version V1.0 * @Description: ????????,???????? */ public class ReportState { /** * ??????? 1?????2?????3??????4-??? 5-???? */ private Integer sendType; /** ??ID */ private Integer targetId; /** ?????? */ private String serialNum; /** * ????????????????????? ??????????????????? ???????????????? "1"??PC???IM?? "2"??WAPIM?? * "3"??WEBIM?? "98"???????? "99"????????? ??????????????? "0"???????? "1"?????????? * "2"????????? "9"????????? */ private Short receiveType; /** ???? */ private String errorCode; private String[] fieldArr = {"sendType","targetId","serialNum","receiveType","errorCode"}; public Integer getSendType() { return sendType; } public void setSendType(Integer sendType) { this.sendType = sendType; } public Integer getTargetId() { return targetId; } public void setTargetId(Integer targetId) { this.targetId = targetId; } public String getSerialNum() { return serialNum; } public void setSerialNum(String serialNum) { this.serialNum = serialNum; } public Short getReceiveType() { return receiveType; } public void setReceiveType(Short receiveType) { this.receiveType = receiveType; } public String getErrorCode() { return errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } }