Files
servicebase/pkg/dto/ChatroomCmdResult.go
2025-11-19 14:24:13 +08:00

40 lines
2.8 KiB
Go

package dto
// 聊天室命令执行返回结果
type ChatroomCmdResult struct {
Version string // 命令版本号
ChatroomId string // 聊天室Id
CmdCode string // 命令代码
RoomName string // 聊天室名称
TemplateId string // 聊天室模板ID
SeatIndex string // 位置索引
UserId string // 用户ID
UserNo string // 用户No
Avatar string // 用户头像
Birthday string // 用户生日
Gender string // 用户性别
NickName string // 用户昵称
VipLevel string // 用户vip等级
IsAdmin string // 是否管理员
Charm string // 用户魅力值
SelectIndex string `json:"SelectIndex,omitempty"` // 交友模板用 选择的座位号
SelectUserId string `json:"SelectUserId,omitempty"` // 交友模板用 选择的用户ID
SelectAvatar string `json:"SelectAvatar,omitempty"` // 交友模板用 选择的用户头像
SelectNickName string `json:"SelectNickName,omitempty"` // 交友模板用 选择的用户头像
InLove string `json:"InLove,omitempty"` // 交友模板用 互相选择
SeatType string `json:"SeatType,omitempty"` // 座位类型
AvatarDecoration string `json:"AvatarDecoration,omitempty"` // 头饰 上麦命令传用户头饰
DecorationFormat string `json:"DecorationFormat,omitempty"` // 头饰格式
CountDown string `json:"CountDown,omitempty"` //SeatIndex的座位倒计时
NameColor string `json:"NameColor,omitempty"` // 用户昵称的颜色
NobilitySeatNameColor []string `json:"NobilitySeatNameColor,omitempty"` // 贵族麦上昵称颜色
VipConfig UserVipConfigDTO // 用户VIP CONFIG
InLoveScene FriendShipRoomSceneDTO // 交友模板用 牵手场景
AllowQueue string // 禁麦= 不允许排队 开麦=允许排队
DownUserId string // 下麦人 105
DownSeatIndex string // 下麦位置 105
UpUserId string // 上麦位置 105
UpSeatIndex string // 上麦人 105
UpSeatMute string // 105 上麦后是否禁麦 1=禁麦 0=开麦
}