From f5d0ab01cdede4a7a0dc5fdc522ab715c1549d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Tue, 18 Oct 2022 15:48:57 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E5=AE=8C=E5=96=84=E5=9B=9E?= =?UTF-8?q?=E8=B0=83=E8=A7=A3=E6=9E=90=E7=BB=93=E6=9E=84=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- callback/message.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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"` // 已读回调独有 }