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;
|
|
}
|