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,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
}