kongdeqiang
2024-05-16 0b6189c1c208a4f1c4cd4b230dba10b3581d1ff9
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
package cn.exrick.xboot.your.vo;
 
public class PreviewURLsVo {
    private String protocol="rtsp";//协议类型(rtsp-rtsp协议,rtmp-rtmp协议,hls-hLS协议),未填写为rtsp协议
    private String cameraIndexCode;
    private Integer streamType=0;//码流类型(0-主码流,1-子码流),未填默认为主码流
    private Integer transmode=0;//协议类型( 0-udp,1-tcp),默认为tcp,在protocol设置为rtsp或者rtmp时有效
    private String expand="transcode=0";//
 
    public String getProtocol() {
        return protocol;
    }
 
    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }
 
    public String getCameraIndexCode() {
        return cameraIndexCode;
    }
 
    public void setCameraIndexCode(String cameraIndexCode) {
        this.cameraIndexCode = cameraIndexCode;
    }
 
    public Integer getStreamType() {
        return streamType;
    }
 
    public void setStreamType(Integer streamType) {
        this.streamType = streamType;
    }
 
    public Integer getTransmode() {
        return transmode;
    }
 
    public void setTransmode(Integer transmode) {
        this.transmode = transmode;
    }
 
    public String getExpand() {
        return expand;
    }
 
    public void setExpand(String expand) {
        this.expand = expand;
    }
}