zhanghua
2023-10-26 7fa8a26800a55a73fb41885182fa20b6716cb302
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
package com.ycl.dto.video;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * AlarmDataParam
 *
 * @version V1.0
 * @author: AI
 * @date: 2022-09-20 16:55
 **/
@Data
public class AlarmDataParam {
    /**
     * 报警时间
     */
    @JsonProperty("AlarmTime")
    private String alarmTime;
    /**
     * 报警ID
     */
    @JsonProperty("AlarmID")
    private String alarmID;
    /**
     * 算法类型码
     */
    @JsonProperty("AlgoType")
    private Integer algoType;
    /**
     * 算法类型名称
     */
    @JsonProperty("AlgoName")
    private String algoName;
 
    @JsonProperty("AlarmType")
    private Integer alarmType;
 
    @JsonProperty("AlarmName")
    private String alarmName;
    /**
     * 算法检出对象信息(通常一个视频分析服务报警只包含一个目标信息。图片类多目标检测类算法除外。)
     */
    @JsonProperty("AlarmObject")
    private List<AlarmObject> alarmObject;
 
}