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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package com.ruoyi.aibrain.domain;
 
import com.ruoyi.activeMQ.vo.RuleAreaVO;
import io.swagger.models.auth.In;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
import java.util.List;
 
/**
 * 设备算法规则对象 ai_camera_rule
 *
 * @author wf
 * @date 2023-03-08
 */
public class AiCameraRule extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键自增 */
    private Long id;
 
    /** 设备ID */
    @Excel(name = "设备ID")
    private Long cameraId;
 
    /** 算法ID */
    @Excel(name = "算法ID")
    private Long ruleId;
 
    /** 算法名称 */
    @Excel(name = "算法名称")
    private String ruleName;
 
    /** 划定区域(json串x和y坐标) */
    @Excel(name = "划定区域")
    private String ruleArea;
    /** 偏载左侧区域(json串x和y坐标) */
    private String leftArea;
    /** 偏载中间区域(json串x和y坐标) */
    private String centerArea;
    /** 偏载右侧区域(json串x和y坐标) */
    private String rightArea;
 
    /** 报警联动录像 */
    @Excel(name = "报警联动录像")
    private String isRecord;
 
    /** 报警联动录像时长(秒) */
    @Excel(name = "报警联动录像时长")
    private Integer recordDuration;
 
    /** 报警人数 */
    private Integer peopleNumber;
 
    /** 报警人数 */
    private List<RuleAreaVO> areas;
 
    private Integer second;
    private Integer threshold;
    private Integer b;
    private Integer g;
    private Integer r;
    private Integer pic_w;
    private Integer pic_h;
 
    public String getIsRecord() {
        return isRecord;
    }
 
    public void setIsRecord(String isRecord) {
        this.isRecord = isRecord;
    }
 
    public Integer getSecond() {
        return second;
    }
 
    public void setSecond(Integer second) {
        this.second = second;
    }
 
    public Integer getThreshold() {
        return threshold;
    }
 
    public void setThreshold(Integer threshold) {
        this.threshold = threshold;
    }
 
    public Integer getB() {
        return b;
    }
 
    public void setB(Integer b) {
        this.b = b;
    }
 
    public Integer getG() {
        return g;
    }
 
    public void setG(Integer g) {
        this.g = g;
    }
 
    public Integer getR() {
        return r;
    }
 
    public void setR(Integer r) {
        this.r = r;
    }
 
    public Integer getPic_w() {
        return pic_w;
    }
 
    public void setPic_w(Integer pic_w) {
        this.pic_w = pic_w;
    }
 
    public Integer getPic_h() {
        return pic_h;
    }
 
    public void setPic_h(Integer pic_h) {
        this.pic_h = pic_h;
    }
 
    public String getLeftArea() {
        return leftArea;
    }
 
    public void setLeftArea(String leftArea) {
        this.leftArea = leftArea;
    }
 
    public String getCenterArea() {
        return centerArea;
    }
 
    public void setCenterArea(String centerArea) {
        this.centerArea = centerArea;
    }
 
    public String getRightArea() {
        return rightArea;
    }
 
    public void setRightArea(String rightArea) {
        this.rightArea = rightArea;
    }
 
    public List<RuleAreaVO> getAreas() {
        return areas;
    }
 
    public void setAreas(List<RuleAreaVO> areas) {
        this.areas = areas;
    }
 
    public Integer getPeopleNumber() {
        return peopleNumber;
    }
 
    public void setPeopleNumber(Integer peopleNumber) {
        this.peopleNumber = peopleNumber;
    }
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
    public void setCameraId(Long cameraId)
    {
        this.cameraId = cameraId;
    }
 
    public Long getCameraId()
    {
        return cameraId;
    }
    public void setRuleId(Long ruleId)
    {
        this.ruleId = ruleId;
    }
 
    public Long getRuleId()
    {
        return ruleId;
    }
    public void setRuleName(String ruleName)
    {
        this.ruleName = ruleName;
    }
 
    public String getRuleName()
    {
        return ruleName;
    }
    public void setRuleArea(String ruleArea)
    {
        this.ruleArea = ruleArea;
    }
 
    public String getRuleArea()
    {
        return ruleArea;
    }
 
    public Integer getRecordDuration() {
        return recordDuration;
    }
 
    public void setRecordDuration(Integer recordDuration) {
        this.recordDuration = recordDuration;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("cameraId", getCameraId())
            .append("ruleId", getRuleId())
            .append("ruleName", getRuleName())
            .append("ruleArea", getRuleArea())
            .append("isRecord", getIsRecord())
            .append("recordDuration", getRecordDuration())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .toString();
    }
}