liusuyi
2024-07-12 49bedcce2ac42fa34da012ee3fc8e9230886064a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.call.dto;
 
import lombok.Data;
 
/**
 * @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;
    Integer mediaType;
    Integer type;
}