package model type SuperBalloonRewardConf struct { Star int64 `json:"star"` End int64 `json:"end"` List map[int64]SuperBalloonReward `json:"list"` } type SuperBalloonReward struct { Stage int64 `json:"stage"` ImgType int64 `json:"imgType"` Weight int64 `json:"weight"` Limit int64 `json:"limit"` Prize []ActPrize `json:"prize"` } type SuperBalloonShowConf struct { BaseConf SuperBalloonBaseConf `json:"baseConf"` RewardConf []SuperBalloonRewardShowConf `json:"rewardConf"` } type SuperBalloonRewardShowConf struct { Id int64 `json:"id"` StartEnd Reward []SuperBalloonReward `json:"reward"` } type SuperBalloonBaseConf struct { MoveType int64 `json:"moveType"` ShowPv int64 `json:"showPv"` Speed int64 `json:"speed"` OutPut map[int64]int64 `json:"outPut"` }