解决无法获取用户绑定信息

This commit is contained in:
2025-06-16 16:50:10 +08:00
parent 2903be6223
commit 2bbe45f40c
7 changed files with 85 additions and 106 deletions

View File

@ -135,17 +135,18 @@ type GetPhoneCodeOut struct {
}
type UserGamelifeCache struct {
Aes string `json:"aes"`
IV string `json:"iv"`
Token string `json:"token"`
Aes string `json:"aes"`
IV string `json:"iv"`
Token string `json:"token"`
Params string `json:"params"`
}
type UserBoundResult struct {
Result bool `json:"result"`
Nick string `json:"nick"`
Ctime uint32 `json:"ctime"`
Utype int8 `json:"utype"`
AppName []string `json:"app_name"`
Result bool `json:"result"`
Nick string `json:"nick"`
Ctime uint32 `json:"ctime"`
Utype int8 `json:"utype"`
AppNames []string `json:"app_names"`
}
type UserBoundUrlIn struct {
PopenId string
@ -166,5 +167,9 @@ type UserBoundInfoIn struct {
PopenId string
}
type UserBoundInfoOut struct {
IsBound bool
IsBound bool
AppNames []string
Ctime uint32
Nick string
Utype int8
}