package model type ShopPromotionRewardConf struct { StartEnd Stages map[int64]ShopPromotionSSGroupStage `json:"stages"` } type ShopPromotionSSGroupStage struct { SsGroup Data ShopPromotionStageReward `json:"data"` } type ShopPromotionStageReward struct { BuyNum int64 `json:"buyNum"` Bet int64 `json:"bet"` List []ShopPromotionReward `json:"list"` } type ShopPromotionReward struct { Id int64 `json:"id"` Gid int64 `json:"gid"` Name string `json:"name"` Spins int64 `json:"spins"` } type ShopPromotionShowConf struct { TwoLayerLvSsGroup Reward ShopPromotionStageReward `json:"reward"` }