puzhibing
昨天 4ad32c37e3317fb6cb7cbfb034b53d3220c27db4
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 com.ruoyi.dataInterchange.util.haikang.model;
 
public class PreviewURLsRequest {
    private String cameraIndexCode;
    private Integer streamType;
    private String protocol;
    private Integer transmode;
    private String expand;
 
    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 String getProtocol() {
        return protocol;
    }
 
    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }
 
    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;
    }
}