xiangpei
2024-12-26 7082826bf8f817f4484eda8555599610243ff6a5
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
package com.ycl.domain.query;
 
/**
 * 摄像头点播
 *
 * @author:xp
 * @date:2024/12/20 11:35
 */
public class CameraPlayQuery {
 
    /**
     * 摄像机编码
     *
     */
    private String indexCode;
 
    /**
     * 返回地址的协议
     *
     */
    private String protocol;
 
 
    public String getIndexCode() {
        return indexCode;
    }
 
    public void setIndexCode(String indexCode) {
        this.indexCode = indexCode;
    }
 
    public String getProtocol() {
        return protocol;
    }
 
    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }
}