1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ycl.jxkg.domain.vo;
|
| import lombok.Data;
|
| /**
| * 会议学生数据
| *
| * @author:xp
| * @date:2024/7/11 14:58
| */
| @Data
| public class StudentSimpleVO {
|
| private Integer id;
|
| private String realName;
|
| /**
| * 会议在线状态:0离线 1在线 返回数据都是离线,前端判断在线
| *
| */
| private Integer onlineStatus = 0;
|
| }
|
|