You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
991 B
41 lines
991 B
package values |
|
|
|
import "server/common" |
|
|
|
// GameNum 子项游戏请求个数 |
|
type FirstPageReq struct { |
|
GameNum int |
|
} |
|
|
|
type FirstPageResp struct { |
|
Currencys []OneCurrency |
|
Activitys []*common.ConfigBanner |
|
GameTypes []*common.ConfigGameType |
|
GameMarks []*common.ConfigGameMark |
|
Providers []*common.ConfigGameProvider |
|
Games []OneFisrtPageGame |
|
Esport *common.ConfigGameList |
|
DownloadAppReward int64 |
|
ShowData ShowInfo // 首页头部展示 |
|
} |
|
|
|
type ShowInfo struct { |
|
Reward int64 // 奖金 |
|
AverWithdraw int64 // 平均提现市场 |
|
MaxBet int64 // 今日最大下注 |
|
WithdrawCount int64 // 今日提现总额 |
|
} |
|
type OneCurrency struct { |
|
ID common.CurrencyType |
|
Name string |
|
} |
|
|
|
// Icon 游戏标题图标 |
|
// Name 游戏标题名 |
|
// JumpID 跳转查询id |
|
// JumpType 跳转类型 1type 2mark |
|
// Sort 排序 |
|
type OneFisrtPageGame struct { |
|
*common.ConfigFirstPageGames |
|
List []*common.ConfigGameList |
|
}
|
|
|