package com.ruoyi.activeMQ.vo; 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_rule * * @author wf * @date 2023-03-08 */ public class CameraRuleVO { /** 算法ID */ private String id; /** 延时时间数 */ private Integer delay; /** 阈值 */ private Integer threshold; /** 报警联动录像 */ @Excel(name = "报警联动录像") private String isRecord; /** 报警联动录像时长(秒) */ @Excel(name = "报警联动录像时长") private Integer recordDuration; private RuleAreaVO rects; public RuleAreaVO getRects() { return rects; } public void setRects(RuleAreaVO rects) { this.rects = rects; } public String getIsRecord() { return isRecord; } public void setIsRecord(String isRecord) { this.isRecord = isRecord; } public Integer getRecordDuration() { return recordDuration; } public void setRecordDuration(Integer recordDuration) { this.recordDuration = recordDuration; } public String getId() { return id; } public void setId(String id) { this.id = id; } public Integer getDelay() { return delay; } public void setDelay(Integer delay) { this.delay = delay; } public Integer getThreshold() { return threshold; } public void setThreshold(Integer threshold) { this.threshold = threshold; } }