From 06b0e8384c9c1fb5f3a0abd90423ce4ff810fb65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Thu, 24 Apr 2025 08:38:48 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E4=BF=AE=E6=94=B9SnsBgObjectId?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E7=B1=BB=E5=9E=8B=E4=B8=BAuint=E4=BB=A5?= =?UTF-8?q?=E6=8F=90=E9=AB=98=E6=95=B0=E6=8D=AE=E4=B8=80=E8=87=B4=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- friend/response.go | 2 +- group/response.go | 6 +++--- user/response.go | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/friend/response.go b/friend/response.go index ebbc385..2f65b7f 100644 --- a/friend/response.go +++ b/friend/response.go @@ -111,7 +111,7 @@ type ContactListItem struct { SmallHeadImgUrl string `json:"SmallHeadImgUrl"` SnsUserInfo struct { SnsBgImgId string `json:"SnsBgimgId"` - SnsBgObjectId int `json:"SnsBgobjectId"` + SnsBgObjectId uint `json:"SnsBgobjectId"` SnsFlag int `json:"SnsFlag"` SnsFlagEx int `json:"SnsFlagEx"` } `json:"SnsUserInfo"` diff --git a/group/response.go b/group/response.go index 27574e5..212dd59 100644 --- a/group/response.go +++ b/group/response.go @@ -107,9 +107,9 @@ type ChatroomInfoItem struct { AlbumStyle int `json:"AlbumStyle"` AlbumFlag int `json:"AlbumFlag"` SnsUserInfo struct { - SnsFlag int `json:"SnsFlag"` - SnsBgobjectId int `json:"SnsBgobjectId"` - SnsFlagEx int `json:"SnsFlagEx"` + SnsFlag int `json:"SnsFlag"` + SnsBgobjectId uint `json:"SnsBgobjectId"` + SnsFlagEx int `json:"SnsFlagEx"` } `json:"SnsUserInfo"` SmallHeadImgUrl string `json:"SmallHeadImgUrl"` // 头像 CustomizedInfo struct { diff --git a/user/response.go b/user/response.go index eff555b..9eaaf11 100644 --- a/user/response.go +++ b/user/response.go @@ -69,10 +69,10 @@ type GetProfileResponse struct { } `json:"userInfo"` UserInfoExt struct { SnsUserInfo struct { - SnsFlag int `json:"SnsFlag"` - SnsBgImgId string `json:"SnsBgimgId"` // 朋友圈背景图地址 - SnsBgObjectId float64 `json:"SnsBgobjectId"` - SnsFlagEx int `json:"SnsFlagEx"` + SnsFlag int `json:"SnsFlag"` + SnsBgImgId string `json:"SnsBgimgId"` // 朋友圈背景图地址 + SnsBgObjectId uint `json:"SnsBgobjectId"` + SnsFlagEx int `json:"SnsFlagEx"` } `json:"SnsUserInfo"` MyBrandList string `json:"MyBrandList"` BigChatRoomSize int `json:"BigChatRoomSize"`