package model type SuperGashaponRepoConf struct { LvRange Stages map[int64]SuperGashaponSpinsStage `json:"stages"` } type SuperGashaponSpinsStage struct { SpinsRange Stages map[int64]SuperGashaponSsStage `json:"stages"` } type SuperGashaponSsStage struct { SsGroup Reward map[int64]SuperGashaponStageReward `json:"reward"` } // SuperGashaponStageReward 超级扭蛋 type SuperGashaponStageReward struct { Layer int64 `json:"layer"` GashType int64 `json:"gashType"` Weight int64 `json:"weight"` NeedCoins int64 `json:"needCoins"` Prize []ActPrize `json:"prize"` } type SuperGashaponShowConf struct { ThreeLayer Reward []SuperGashaponStageReward `json:"reward"` TokenGoods TokenGoods `json:"tokenGoods"` }