feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

View File

@ -0,0 +1,18 @@
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
}