admin
2024-03-25 6729c925673fcf41cf12f6f1b59d1489a6031731
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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;
    }
 
 
}