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