package main type LotteryPlatformConfig struct { Platform string RoomCardCost int64 // 房卡消耗数量 } type LotteryMgr struct { Platforms map[string]*LotteryPlatformConfig }