package model type ChooseOneRepoConf struct { Gid []int64 `json:"gid"` Data map[int64]ChooseOneStageConf `json:"data"` } type ChooseOneStageConf struct { Price float64 `json:"gprice"` Sku string `json:"gsku"` Discount float64 `json:"gdiscount"` Gid int64 `json:"gid"` Prize []ActPrize `json:"prize"` } type ChooseOneShowConf struct { OneLayerSsGroup Reward []ChooseOneStageConf `json:"reward"` }