This commit is contained in:
richboo111
2023-10-27 15:40:30 +08:00
parent a9fc81919f
commit 5f94e94d6d
2 changed files with 8 additions and 2 deletions

View File

@@ -114,10 +114,10 @@ type ImMessageSend struct {
type PayLoad struct {
SenderID string `json:"senderId"` //角色+随机数字串角色10(用户)、20(骑手)、30(商家)、32连锁账号登录
ReceiverIDs []string `json:"receiverIds"` //角色+随机数字串角色10(用户)、20(骑手)、30(商家)、32连锁账号登录
CreateTime int64 `json:"createTime"` //时间戳
CreateTime int `json:"createTime"` //时间戳
GroupID string `json:"groupId"` //会话id
MsgID string `json:"msgId"` //消息ID
ContentType int `json:"contentType"` //消息类型枚举值1-普通文本
ContentType string `json:"contentType"` //消息类型枚举值1-普通文本
Content string `json:"content"`
}