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,17 @@
package response
// 获取当轮魅力值和座位上的男女top1
type GetChatroomCurrentRoundCharmResponse struct {
ManTopOneUserId string // 男性top one
WomanTopOneUserId string // 女性top one
CurrentRoundCharmList []RoundUserCharm
}
// 魅力值用户
type RoundUserCharm struct {
UserId string
Avatar string
NickName string
CharmValue string
Gender string
}