28 lines
619 B
Go
28 lines
619 B
Go
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 // 隐身
|
|
|
|
}
|