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; } }