admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
utils/src/main/java/com/qcloud/cmq/Message.java
@@ -1,28 +1,28 @@
package com.qcloud.cmq;
import java.util.Vector;
/**
 *  Message class .
 *
 * @author York.
 *         Created 2016年9月26日.
 */
public class Message {
   /** 服务器返回的消息ID */
   public String msgId;
   /** 每次消费唯一的消息句柄,用于删除等操作 */
   public String receiptHandle;
   /** 消息体 */
   public String msgBody;
   /** 消息发送到队列的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
    public long enqueueTime;
   /** 消息下次可见的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
   public long nextVisibleTime;
   /** 消息第一次出队列的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
   public long firstDequeueTime;
   /** 出队列次数 */
   public   int dequeueCount;
   public  Vector<String> msgTag;
}
package com.qcloud.cmq;
import java.util.Vector;
/**
 *  Message class .
 *
 * @author York.
 *         Created 2016年9月26日.
 */
public class Message {
   /** 服务器返回的消息ID */
   public String msgId;
   /** 每次消费唯一的消息句柄,用于删除等操作 */
   public String receiptHandle;
   /** 消息体 */
   public String msgBody;
   /** 消息发送到队列的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
    public long enqueueTime;
   /** 消息下次可见的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
   public long nextVisibleTime;
   /** 消息第一次出队列的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
   public long firstDequeueTime;
   /** 出队列次数 */
   public   int dequeueCount;
   public  Vector<String> msgTag;
}