13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
61
62
package com.ruoyi.fuzhou.domain;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
 
public class CameraPTZ {
 
    @JsonProperty("cameraIndexCode")
    private String cameraIndexCode;
 
    @JsonProperty("action")
    private Integer action;
 
    @JsonProperty("command")
    private String command;
 
    @JsonProperty("speed")
    private Integer speed;
 
    @JsonProperty("presetIndex")
    private Integer presetIndex;
 
    public String getCameraIndexCode() {
        return cameraIndexCode;
    }
 
    public void setCameraIndexCode(String cameraIndexCode) {
        this.cameraIndexCode = cameraIndexCode;
    }
 
    public Integer getAction() {
        return action;
    }
 
    public void setAction(Integer action) {
        this.action = action;
    }
 
    public String getCommand() {
        return command;
    }
 
    public void setCommand(String command) {
        this.command = command;
    }
 
    public Integer getSpeed() {
        return speed;
    }
 
    public void setSpeed(Integer speed) {
        this.speed = speed;
    }
 
    public Integer getPresetIndex() {
        return presetIndex;
    }
 
    public void setPresetIndex(Integer presetIndex) {
        this.presetIndex = presetIndex;
    }
}