feiyu02
2022-06-28 5670e4a15fba292ef5f8fb90e96072de976bb621
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
}