riku
2021-09-24 4f1b7973c53b45f57e451191bfd5a3d2136a004c
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
}