diff --git a/callback/message.go b/callback/message.go index 8974831..054fc46 100644 --- a/callback/message.go +++ b/callback/message.go @@ -14,5 +14,8 @@ type MessageCallbackData struct { CloudCustomData string `json:"CloudCustomData"` // 消息自定义数据(云端保存,会发送到对端,程序卸载重装后还能拉取到) SendMsgResult int `json:"SendMsgResult"` // 消息发送之后独有 ErrorInfo string `json:"ErrorInfo"` // 消息发送之后独有 - UnreadMsgNum int `json:"UnreadMsgNum"` // 消息发送之后独有 + UnreadMsgNum int `json:"UnreadMsgNum"` // 消息发送之后、已读回调、撤回消息共有 + ReportAccount string `json:"Report_Account"` // 已读回调独有 + PeerAccount string `json:"Peer_Account"` // 已读回调独有 + LastReadTime int `json:"LastReadTime"` // 已读回调独有 }