1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ruoyi.call.dto;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @ClassName:CallMessage
| * @Description:
| * @Author:ard
| * @Date:2024年07月08日13:48
| * @Version:1.0
| **/
| @Data
| public class CallMessage {
| String step;
| String roomId;
| String userId;
| String targetId;
| List<String> targetIds;
| Integer mediaType;
| Integer type;
| }
|
|