7
0

Compare commits

...

2 Commits

Author SHA1 Message Date
7e91e7ff9f 添加注释 2026-04-28 15:08:50 +08:00
9c6127fc0c 获取游戏信息新增 是否开启绑定手机号开关 2026-04-28 15:08:04 +08:00

View File

@ -2,10 +2,11 @@ package game
import ( import (
"fmt" "fmt"
"time"
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests" "golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses" "golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses"
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/utils" "golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/utils"
"time"
) )
const gameKey = "gaoreapi" const gameKey = "gaoreapi"
@ -156,6 +157,7 @@ type GameInfoData struct {
UpdatedRealname string `json:"updated_realname"` UpdatedRealname string `json:"updated_realname"`
UpdatedUsername string `json:"updated_username"` UpdatedUsername string `json:"updated_username"`
IsAuth int `json:"is_auth"` IsAuth int `json:"is_auth"`
BindPhoneTip int `json:"bind_phone_tip"` // 是否开启绑定手机号 1是 2否
} }
func CreateGetGameInfoByIdReq(gameId, noCache int) *GetGameInfoReq { func CreateGetGameInfoByIdReq(gameId, noCache int) *GetGameInfoReq {