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
40
41
42
43
44
45
46
47
48
49
50
51
package com.ycl.domain.form;
 
/**
 * @author:xp
 * @date:2024/12/20 12:37
 */
public class CameraCommandForm {
 
    /**
     * 摄像机编码
     *
     */
    private String indexCode;
 
    /**
     * 0-开始 ,1-停止
     *
     */
    private Integer action;
 
    /**
     * 命令
     *
     */
    private String command;
 
 
    public String getIndexCode() {
        return indexCode;
    }
 
    public void setIndexCode(String indexCode) {
        this.indexCode = indexCode;
    }
 
    public String getCommand() {
        return command;
    }
 
    public void setCommand(String command) {
        this.command = command;
    }
 
    public Integer getAction() {
        return action;
    }
 
    public void setAction(Integer action) {
        this.action = action;
    }
}