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

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

@ -63,7 +63,11 @@ type GetUserBoundInfoReq struct {
PopenId string `json:"popenId" v:"required#popenId不能为空" dc:"用户详情接口返回的 wxPopenId 或者是 qqPopenId"`
}
type GetUserBoundInfoRes struct {
IsBound bool `json:"isBound" dc:"是否已绑定"`
IsBound bool `json:"isBound" dc:"是否已绑定"`
Nick string `json:"nick" dc:"昵称"`
AppNames []string `json:"appNames" dc:"已绑定游戏名称"`
Utype int8 `json:"utype" dc:"用户类型,1: qq2: 微信"`
Ctime uint32 `json:"ctime" dc:"绑定时间"`
}
type GetBoundUrlReq struct {