feiyu02
2022-09-15 3e2159e45e12b2b8af058b68eafeaf082cf3fe85
1
2
3
4
5
6
7
8
9
10
11
12
13
package cn.flightfeather.supervision.websocket
 
import com.fasterxml.jackson.annotation.JsonInclude
 
/**
 * 在线会议个人系统信息,包括 是否禁言、点名消息等
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
class PersonalServerMsgVo(
        var meetingId: String? = null,
        var muteStatusList: Map<String, Boolean>,
        var callNameList: List<String>
) : MeetingMsgVo()