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.
35 lines
756 B
35 lines
756 B
|
1 year ago
|
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
|
||
|
|
}
|
||
|
|
|
||
|
|
type OneCurrency struct {
|
||
|
|
ID common.CurrencyType
|
||
|
|
Name string
|
||
|
|
}
|
||
|
|
|
||
|
|
// Icon 游戏标题图标
|
||
|
|
// Name 游戏标题名
|
||
|
|
// JumpID 跳转查询id
|
||
|
|
// JumpType 跳转类型 1type 2mark
|
||
|
|
// Sort 排序
|
||
|
|
type OneFisrtPageGame struct {
|
||
|
|
*common.ConfigFirstPageGames
|
||
|
|
List []*common.ConfigGameList
|
||
|
|
}
|