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,27 @@
package dto
// 聊天室榜单用户对象
type ChatroomListUserDTO struct {
ListUserDTO
Consume string
Charm string
}
// 榜单用户信息
type RankUserInfoDTO struct {
RankNo string
UserId string
NickName string
Avatar string
Gender string
Birthday string
Sign string
ViewFlag string
UserNo string
WellNoIcon string `json:"WellNoIcon,omitempty"` // 靓号ICON
VipConfig UserVipConfigDTO `json:"VipConfig,omitempty"` //vip配置
Consume string // 贡献值
Charm string // 魅力值
IsHidden string // 隐身
}