|
|
@@ -36,6 +36,31 @@ public class MessageInfo implements Serializable {
|
|
|
*/
|
|
|
private Long companyId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 时间戳
|
|
|
+ */
|
|
|
+ private long timestamp;
|
|
|
+
|
|
|
+ public long getTimestamp() {
|
|
|
+ return timestamp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTimestamp(long timestamp) {
|
|
|
+ this.timestamp = timestamp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getRetryCount() {
|
|
|
+ return retryCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRetryCount(int retryCount) {
|
|
|
+ this.retryCount = retryCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 重试次数
|
|
|
+ */
|
|
|
+ private int retryCount;
|
|
|
|
|
|
public String getMsgId() {
|
|
|
return msgId;
|