package activity_dto type GeneralRankRewardDTO struct { Item []*GeneralRankRewardItem // 下对应top-1 RankCode string // 排行榜code 唯一 } type GeneralRankRewardItem struct { Top int // rank top 1 2 3 GiftIdLst []*GiftReward // 礼物 } type GiftReward struct { GiftId string // 礼物ID Count int // 数量 Name string Img string }