Compare commits

..

1 Commits
v0.0.4 ... main

Author SHA1 Message Date
06b0e8384c 🎨 修改SnsBgObjectId字段类型为uint以提高数据一致性 2025-04-24 08:38:48 +08:00
3 changed files with 8 additions and 8 deletions

View File

@ -111,7 +111,7 @@ type ContactListItem struct {
SmallHeadImgUrl string `json:"SmallHeadImgUrl"` SmallHeadImgUrl string `json:"SmallHeadImgUrl"`
SnsUserInfo struct { SnsUserInfo struct {
SnsBgImgId string `json:"SnsBgimgId"` SnsBgImgId string `json:"SnsBgimgId"`
SnsBgObjectId int `json:"SnsBgobjectId"` SnsBgObjectId uint `json:"SnsBgobjectId"`
SnsFlag int `json:"SnsFlag"` SnsFlag int `json:"SnsFlag"`
SnsFlagEx int `json:"SnsFlagEx"` SnsFlagEx int `json:"SnsFlagEx"`
} `json:"SnsUserInfo"` } `json:"SnsUserInfo"`

View File

@ -107,9 +107,9 @@ type ChatroomInfoItem struct {
AlbumStyle int `json:"AlbumStyle"` AlbumStyle int `json:"AlbumStyle"`
AlbumFlag int `json:"AlbumFlag"` AlbumFlag int `json:"AlbumFlag"`
SnsUserInfo struct { SnsUserInfo struct {
SnsFlag int `json:"SnsFlag"` SnsFlag int `json:"SnsFlag"`
SnsBgobjectId int `json:"SnsBgobjectId"` SnsBgobjectId uint `json:"SnsBgobjectId"`
SnsFlagEx int `json:"SnsFlagEx"` SnsFlagEx int `json:"SnsFlagEx"`
} `json:"SnsUserInfo"` } `json:"SnsUserInfo"`
SmallHeadImgUrl string `json:"SmallHeadImgUrl"` // 头像 SmallHeadImgUrl string `json:"SmallHeadImgUrl"` // 头像
CustomizedInfo struct { CustomizedInfo struct {

View File

@ -69,10 +69,10 @@ type GetProfileResponse struct {
} `json:"userInfo"` } `json:"userInfo"`
UserInfoExt struct { UserInfoExt struct {
SnsUserInfo struct { SnsUserInfo struct {
SnsFlag int `json:"SnsFlag"` SnsFlag int `json:"SnsFlag"`
SnsBgImgId string `json:"SnsBgimgId"` // 朋友圈背景图地址 SnsBgImgId string `json:"SnsBgimgId"` // 朋友圈背景图地址
SnsBgObjectId float64 `json:"SnsBgobjectId"` SnsBgObjectId uint `json:"SnsBgobjectId"`
SnsFlagEx int `json:"SnsFlagEx"` SnsFlagEx int `json:"SnsFlagEx"`
} `json:"SnsUserInfo"` } `json:"SnsUserInfo"`
MyBrandList string `json:"MyBrandList"` MyBrandList string `json:"MyBrandList"`
BigChatRoomSize int `json:"BigChatRoomSize"` BigChatRoomSize int `json:"BigChatRoomSize"`