完善回调解析结构体

This commit is contained in:
李寻欢 2022-10-18 15:48:57 +08:00
parent 8d299c45a5
commit f5d0ab01cd
1 changed files with 4 additions and 1 deletions

View File

@ -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"` // 已读回调独有
}