1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| package com.ard.common.core.domain;
|
| import lombok.Data;
|
| /**
| * @FileName RtpServerParam
| * @Description
| * @Author fengcheng
| * @date 2026-04-07
| **/
| @Data
| public class RtpServerParam {
|
| private Long id;
|
| private String ip;
|
| private Integer port;
|
| private String ssrc;
|
| private String gbDeviceId;
|
| private String gbChannelId;
|
| private String streamMode;
|
| private String mediaServerId;
|
| private String app;
|
| private String stream;
|
| private String mobileNo;
|
| private String type;
|
| /** 通道号 */
| private Integer channel;
| }
|
|