package values import "server/common" type LuckyWheelCfgReq struct { } type LuckyWheel struct { common.LuckyWheel LessDrawCount int `json:"lessDrawCount"` } type LuckyWheelCfgResp struct { LuckyWheel []LuckyWheel `json:"luckyWheel"` } type LuckyWheelLotteryReq struct { LuckyType int `json:"luckyType"` // 转盘类型(1:黄铜,2:白银,3:黄金, 4:特殊) } type LuckWheelLotteryResp struct { LessTimes int `json:"lessTimes"` // 转盘剩余次数 AwardIndex int `json:"awardIndex"` // 奖励下标 Award common.LuckyAward `json:"award"` // 奖励类型 }