feiyu02
2024-08-15 196bb14112448857a885e32dc4149e308e00b01a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.flightfeather.supervision.lightshare.vo
 
import cn.flightfeather.supervision.domain.enumeration.ParticipantType
 
/**
 * @author riku
 * Date: 2020/3/16
 * 会议用户在线实时状态
 */
class MeetingUserOnlineStatusVo {
    //用户id
    var userId: String? = null
    var headIconUrl: String? = null
    var acountname: String? = null
    //是否禁言
    var mute: Boolean = true
    //是否在线
    var online: Boolean = false
    //人员类型
    var personType: Int = ParticipantType.Conferee.value
}