feat(app): update
This commit is contained in:
16
pkg/dto/request/admin/GeneralRankRewarRequest.go
Normal file
16
pkg/dto/request/admin/GeneralRankRewarRequest.go
Normal file
@ -0,0 +1,16 @@
|
||||
package admin
|
||||
|
||||
type GeneralRankRewardReq 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 // 数量
|
||||
}
|
||||
Reference in New Issue
Block a user