1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.flightfeather.supervision.websocket
|
| import cn.flightfeather.supervision.domain.entity.MeetingInfo
| import com.fasterxml.jackson.annotation.JsonInclude
|
| /**
| * 会议在线实时状态信息
| */
| @JsonInclude(JsonInclude.Include.NON_NULL)
| class ServerMsgVo(
| var meetingId: String? = null,
| var onlineNum: Int = 0,
| var registerNum: Int = 0,
| var mute: Boolean = true,
| var meeting: MeetingInfo? = null
| ) : MeetingMsgVo()
|
|