22 lines
1.1 KiB
Go
22 lines
1.1 KiB
Go
package response
|
|
|
|
import "gitea.ddegame.cn/open/servicebase/pkg/dto/yunxin"
|
|
|
|
// 聊天室麦序和排队列表对象
|
|
type GetChatroomSeatAndQueueInfoResponse struct {
|
|
ChatroomId string // 聊天室ID
|
|
RoomName string // 房间名称
|
|
SeatList []yunxin.RoomSeatModel // 嘉宾座位列表
|
|
AdminSeatList []yunxin.RoomSeatModel // 管理员麦序列表(麦序模式)
|
|
FreeSeatList []yunxin.RoomSeatModel // 管理员麦序列表(频道模式)
|
|
Section string // 相亲模板的阶段
|
|
SurplusTime string `json:"SurplusTime,omitempty"` // 剩余时间
|
|
Version string // 数据版本
|
|
TemplateId string // 模板
|
|
MasterSeat yunxin.RoomSeatModel // 主持位
|
|
BossSeat *yunxin.RoomSeatModel `json:"BossSeat,omitempty"` // 老板位 频道模式为麦序位
|
|
WaitingUserQueue []yunxin.ChatroomWaitUpData // 电台排队列表
|
|
SendMessageTimeGap string // 发言时间 间隔
|
|
|
|
}
|