From 8d299c45a5afe7518dc9d6812c62face69b1f0f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Wed, 19 Jan 2022 10:20:10 +0800 Subject: [PATCH] :sparkles: bug fix. --- api/param/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/param/request.go b/api/param/request.go index 5d668d2..28c8c08 100644 --- a/api/param/request.go +++ b/api/param/request.go @@ -82,6 +82,6 @@ type PushOrdinaryMsgToGroupReq struct { type PushMessageToUserReq struct { FromAccount string `json:"From_Account"` // 发信人 ToAccount string `json:"To_Account"` // 收信人 - Random int `json:"Random"` // 随机数 + Random int `json:"MsgRandom"` // 随机数 MsgBody []callback.TIMMessage `json:"MsgBody"` // 消息内容 }