feat(app): update
This commit is contained in:
23
pkg/dto/activity/BossHpAndAttackRankDTO.go
Normal file
23
pkg/dto/activity/BossHpAndAttackRankDTO.go
Normal file
@ -0,0 +1,23 @@
|
||||
package activity_dto
|
||||
|
||||
type BossHpAndAttackRankDTO struct {
|
||||
Hp string
|
||||
HpPass string
|
||||
State string
|
||||
AppearAt string
|
||||
DisappearAt string
|
||||
Balance int64
|
||||
AttackBossRankList []AttackBossRankDTO // 输出排行榜
|
||||
NewWinPrizeMsgList []string // 最新中奖信息
|
||||
// NewDeathPrize model_activity.ActivityDeathBossPrizeModel
|
||||
}
|
||||
|
||||
// 用户输出排行榜对象
|
||||
type AttackBossRankDTO struct {
|
||||
Rank string
|
||||
UserId string
|
||||
UserNo string
|
||||
NickName string
|
||||
Avatar string
|
||||
AttackScore string
|
||||
}
|
||||
Reference in New Issue
Block a user