feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

View File

@ -35,12 +35,12 @@ type WinTeam struct {
}
type MatchItem struct {
BasicInfo BasicInfo `json:"basic_info"`
IsFollow int64 `json:"is_follow"`
PageToken string `json:"page_token"`
RecentMatch interface{} `json:"recent_match"`
Teams []Team `json:"teams"`
WinTeam WinTeam `json:"win_team"`
BasicInfo BasicInfo `json:"basic_info"`
IsFollow int64 `json:"is_follow"`
PageToken string `json:"page_token"`
RecentMatch any `json:"recent_match"`
Teams []Team `json:"teams"`
WinTeam WinTeam `json:"win_team"`
}
type Data struct {
APIGo bool `json:"api_go"`
@ -49,10 +49,10 @@ type Data struct {
}
type MatchResponse struct {
Data Data `json:"data"`
Errcode int64 `json:"errcode"`
Message interface{} `json:"message"`
Success bool `json:"success"`
Data Data `json:"data"`
Errcode int64 `json:"errcode"`
Message any `json:"message"`
Success bool `json:"success"`
}
// 详情返回的
@ -159,23 +159,23 @@ type PromotionFromTt struct {
type MatchDetailResponse struct {
Data MatchDetailData `json:"data"`
Errcode int64 `json:"errcode"`
Message interface{} `json:"message"`
Message any `json:"message"`
Success bool `json:"success"`
}
// 赛程的
type MatchBattleResponse struct {
Data BattleData `json:"data"`
Errcode int64 `json:"errcode"`
Message interface{} `json:"message"`
Success bool `json:"success"`
Data BattleData `json:"data"`
Errcode int64 `json:"errcode"`
Message any `json:"message"`
Success bool `json:"success"`
}
type BattleData struct {
Matches []Match `json:"matches"`
StateVer string `json:"state_ver"`
StateVerV1 interface{} `json:"state_ver_v1"`
TodayMcTotal string `json:"today_mc_total"`
Matches []Match `json:"matches"`
StateVer string `json:"state_ver"`
StateVerV1 any `json:"state_ver_v1"`
TodayMcTotal string `json:"today_mc_total"`
}
type Match struct {
@ -212,23 +212,23 @@ type McInfo struct {
}
type T1Info struct {
Bonus string `json:"bonus"`
Country string `json:"country"`
DispName string `json:"disp_name"`
ID string `json:"id"`
Logo string `json:"logo"`
Rank string `json:"rank"`
VRank interface{} `json:"v_rank"`
Bonus string `json:"bonus"`
Country string `json:"country"`
DispName string `json:"disp_name"`
ID string `json:"id"`
Logo string `json:"logo"`
Rank string `json:"rank"`
VRank any `json:"v_rank"`
}
type T2Info struct {
Bonus string `json:"bonus"`
Country string `json:"country"`
DispName string `json:"disp_name"`
ID string `json:"id"`
Logo string `json:"logo"`
Rank string `json:"rank"`
VRank interface{} `json:"v_rank"`
Bonus string `json:"bonus"`
Country string `json:"country"`
DispName string `json:"disp_name"`
ID string `json:"id"`
Logo string `json:"logo"`
Rank string `json:"rank"`
VRank any `json:"v_rank"`
}
type UserData struct {
@ -313,7 +313,7 @@ type Status struct {
type PlayerRankResponse struct {
Data PlayerRankData `json:"data"`
Errcode int64 `json:"errcode"`
Message interface{} `json:"message"`
Message any `json:"message"`
Success bool `json:"success"`
}
@ -340,7 +340,7 @@ type FieldValues struct {
type TeamRankResponse struct {
Data TeamRankData `json:"data"`
Errcode int64 `json:"errcode"`
Message interface{} `json:"message"`
Message any `json:"message"`
Success bool `json:"success"`
}