package model type FantasticBonusRepoConf struct { StartEnd Stages map[int64]FantasticBonusSSGroupStage `json:"stages"` } type FantasticBonusSSGroupStage struct { SsGroup Stages []FantasticBonusStageReward `json:"stages"` } type FantasticBonusStageReward struct { Price float64 `json:"price"` Sku string `json:"sku"` Discount float64 `json:"discount"` Gid int64 `json:"gid"` BonusPrize []ActPrize `json:"bonusPrize"` NormalPrize []ActPrize `json:"normalPrize"` } type FantasticBonusShowConf struct { TwoLayerLvSsGroup Stages []FantasticBonusStageReward `json:"stages"` }