package model // JigsawRewardRepoConf 数据库存储数据类型 type JigsawRewardRepoConf struct { LvRange Stages map[int64]JigsawSpinsStage `json:"stages"` } type JigsawSpinsStage struct { SpinsRange Stages map[int64]JigsawSSGroupStage `json:"stages"` } type JigsawSSGroupStage struct { SsGroup Reward map[int64]JigsawStageReward `json:"reward"` } type JigsawStageReward struct { Stage int64 `json:"stage"` StepNum int64 `json:"stepnum"` BlockImg string `json:"blockimg"` Prize []ActPrize `json:"prize"` } type JigsawShowConf struct { ThreeLayer Reward []JigsawStageReward `json:"reward"` }