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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| package com.ard.vtdu.api.domian;
|
| import com.ard.common.core.annotation.Excel;
| import com.ard.common.core.web.domain.BaseEntity;
| import lombok.Data;
|
| /**
| * 流媒体管理对象 vtdu
| *
| * @author ard
| * @date 2023-08-29
| */
| @Data
| public class ArdVtdu extends BaseEntity {
| private static final long serialVersionUID = 1L;
|
| /**
| * 主键名称
| */
| @Excel(name = "名称")
| private String name;
|
| /**
| * rtsp源地址
| */
| @Excel(name = "rtsp源地址")
| private String rtspSource;
|
| /**
| * 是否转码
| * 0:不转码 1:转码
| */
| @Excel(name = "是否转码")
| private Integer isCode;
|
| /**
| * 编解码模式
| * 0:cpu 1:gpu
| */
| @Excel(name = "编解码模式")
| private Integer mode;
| /**
| * 是否录像
| * 0:不录像 1:录像
| */
| @Excel(name = "是否录像")
| private Integer isRecord;
| /**
| * rtsp播放地址
| */
| String rtspUrl;
| /**
| * rtmp播放地址
| */
| String rtmpUrl;
| /**
| * webrtc播放地址
| */
| String webrtcUrl;
| /**
| * 相机ID
| */
| String cameraId;
|
| }
|
|