aijinhui
2023-10-14 0a12bfc2e9594345a0a6cf136bcf234c62450d9d
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
package com.ruoyi.media.domain;
 
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 流媒体管理对象 vtdu
 *
 * @author ard
 * @date 2023-08-29
 */
@Data
public class Vtdu extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
 
    /**
     * 主键名称
     */
    @Excel(name = "名称")
    private String name;
 
    /**
     * rtsp源地址
     */
    @Excel(name = "rtsp源地址")
    private String rtspSource;
 
    /**
     * 是否转码
     */
    @Excel(name = "是否转码")
    private String isCode;
 
    /**
     * 编解码模式
     */
    @Excel(name = "编解码模式")
    private String mode;
 
    /**
     * rtsp播放地址
     */
    String rtspUrl;
    /**
     * rtmp播放地址
     */
    String rtmpUrl;
    /**
     * webrtc播放地址
     */
    String webrtcUrl;
    /**
     * 相机ID
     */
    String cameraId;
}