package com.ruoyi.activeMQ.vo;
|
|
import com.ruoyi.aibrain.domain.AiCameraRule;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.List;
|
|
/**
|
* 设备管理对象 ai_camera
|
*
|
* @author wf
|
* @date 2023-03-08
|
*/
|
public class CameraControlVO {
|
/** 摄像头ID */
|
private String id;
|
|
/** rtspUrl */
|
private String rtspUrl;
|
|
/** ip */
|
private String ip;
|
|
/** name */
|
private String name;
|
|
/** 推流高度 */
|
private Integer remp_h;
|
|
/** 推流宽度 */
|
private Integer remp_w;
|
|
/** 皮带宽度 */
|
private String beltWidth;
|
|
/** toRtmp */
|
private String toRtmp;
|
|
/** 运行算法 */
|
private List<CameraRuleVO> models;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Integer getRemp_h() {
|
return remp_h;
|
}
|
|
public void setRemp_h(Integer remp_h) {
|
this.remp_h = remp_h;
|
}
|
|
public Integer getRemp_w() {
|
return remp_w;
|
}
|
|
public void setRemp_w(Integer remp_w) {
|
this.remp_w = remp_w;
|
}
|
|
public String getBeltWidth() {
|
return beltWidth;
|
}
|
|
public void setBeltWidth(String beltWidth) {
|
this.beltWidth = beltWidth;
|
}
|
|
public String getRtspUrl() {
|
return rtspUrl;
|
}
|
|
public void setRtspUrl(String rtspUrl) {
|
this.rtspUrl = rtspUrl;
|
}
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
|
|
public String getToRtmp() {
|
return toRtmp;
|
}
|
|
public void setToRtmp(String toRtmp) {
|
this.toRtmp = toRtmp;
|
}
|
|
public List<CameraRuleVO> getModels() {
|
return models;
|
}
|
|
public void setModels(List<CameraRuleVO> models) {
|
this.models = models;
|
}
|
}
|