package com.ruoyi.dataInterchange.util.haikang.model;
|
|
import lombok.Data;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/5/23 18:26
|
*/
|
@Data
|
public class Alarm {
|
/**
|
* 告警id
|
*/
|
private String alarmId;
|
/**
|
* 告警详情
|
*/
|
private String alarmInfo;
|
/**
|
* 告警时间
|
*/
|
private String alarmTime;
|
/**
|
* 设备序列号
|
*/
|
private String deviceIndexCode;
|
/**
|
* 方向
|
*/
|
private Integer direction;
|
/**
|
* 驾驶员序列号
|
*/
|
private String driverIndexCode;
|
/**
|
* 驾驶员资格证号
|
*/
|
private String driverNo;
|
/**
|
* 事件id
|
*/
|
private String eventId;
|
/**
|
* 事件类型
|
*/
|
private Long eventType;
|
/**
|
* 海拔
|
*/
|
private Long height;
|
/**
|
* 纬度
|
*/
|
private Long latitude;
|
/**
|
* 告警级别
|
*/
|
private String level;
|
/**
|
* 经度
|
*/
|
private Long longitude;
|
/**
|
* 图片数量
|
* 报警事件报文中picNum>0时,传入报警事件报文中的alarmId和alarmTime调用#API@根据报警ID获取关联图片信息@#接口查询报警关联图片
|
*/
|
private Integer picNum;
|
/**
|
* 源类型 0-设备,1-平台,2-人工
|
*/
|
private Integer sourceType;
|
/**
|
* 速度
|
*/
|
private Long speed;
|
/**
|
* 状态
|
*/
|
private Integer status;
|
/**
|
* 车辆编号
|
*/
|
private String vehicleIndexCode;
|
/**
|
* 车牌/名称
|
*/
|
private String vehicleLicensePlate;
|
/**
|
* 车牌颜色
|
*/
|
private Integer vehicleLicenseColor;
|
/**
|
* 视频数量
|
* 报警事件报文中videoNum>0时,传入报警事件报文中的alarmId和alarmTime调用#API@根据报警ID获取关联短视频信息@#接口查询报警关联短视频
|
*/
|
private Integer videoNum;
|
}
|