|
@@ -46,7 +46,7 @@ public class ChannelMessageSyncMessageVO {
|
|
|
* 消息10位到秒的时间戳
|
|
|
*/
|
|
|
@JsonProperty("timestamp")
|
|
|
- private Long timestamp;
|
|
|
+ private String timestamp;
|
|
|
/**
|
|
|
* base64编码的消息内容
|
|
|
*/
|
|
@@ -117,11 +117,11 @@ public class ChannelMessageSyncMessageVO {
|
|
|
this.channelType = channelType;
|
|
|
}
|
|
|
|
|
|
- public Long getTimestamp() {
|
|
|
+ public String getTimestamp() {
|
|
|
return timestamp;
|
|
|
}
|
|
|
|
|
|
- public void setTimestamp(Long timestamp) {
|
|
|
+ public void setTimestamp(String timestamp) {
|
|
|
this.timestamp = timestamp;
|
|
|
}
|
|
|
|