feiyu02
2026-01-21 fe031e01cc1737c2f05a133fde7c36c7a2a7b4b4
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()