feat(app): update
This commit is contained in:
17
pkg/dto/response/GetChatroomCurrentRoundCharmResponse.go
Normal file
17
pkg/dto/response/GetChatroomCurrentRoundCharmResponse.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user