package com.github.sd4324530.fastweixin.message.req; /** * Created by jileilei on 15/8/10. */ public class SendMessageEvent extends BaseEvent{ private String msgId;//群发的消息ID private String status;//群发消息状态 private Integer totalCount;//发送总数 private Integer filterCount;//过滤后的数量 private Integer sentCount;//发送成功数量 private Integer errorCount;//发送失败数量 public SendMessageEvent() { super(); } public SendMessageEvent(String msgId, String status, Integer totalCount, Integer filterCount, Integer sentCount, Integer errorCount){ super(); this.msgId=msgId; this.status=status; this.totalCount=totalCount; this.filterCount=filterCount; this.sentCount=sentCount; this.errorCount=errorCount; } public String getMsgId() { return msgId; } public void setMsgId(String msgId) { this.msgId = msgId; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getFilterCount() { return filterCount; } public void setFilterCount(Integer filterCount) { this.filterCount = filterCount; } public Integer getSentCount() { return sentCount; } public void setSentCount(Integer sentCount) { this.sentCount = sentCount; } public Integer getErrorCount() { return errorCount; } public void setErrorCount(Integer errorCount) { this.errorCount = errorCount; } }