人员守护事件消息
获取人员守护事件消息。人员守护事件消息由人员守护布控任务触发。
消息类型
人员守护事件消息:MESSAGE_FACE_GUARD
data 结构
| 参数名称 | 参数类型 | 参数含义 | 说明 |
|---|---|---|---|
| region | String | 企业 id | |
| detectTime | String | 事件触发时间 | 13 位毫秒 |
| alarmContext | String | 事件的内容 | 不同的 AI 事件,告警的内容不同,请根据 AI 事件编码分别解析 |
alarmContext 结构
| 参数名称 | 参数类型 | 参数含义 | 说明 |
|---|---|---|---|
| alarmTime | int | 事件触发时间戳 | 13 位毫秒 |
| taskName | String | 布控任务名称 | |
| peopleName | String | 人员姓名 | |
| peoplePhoto | String | 人员照片地址链接 | |
| alarmType | String | 事件类型名称 | |
| deviceList | List<deviceInfo> | 守护设备列表 |
deviceInfo 结构
| 参数名称 | 参数类型 | 参数含义 | 说明 |
|---|---|---|---|
| deviceId | String | 设备 id | |
| deviceName | String | 设备名称 |
示例
json
{
"...": "...",
"msgList": [
{
"msgType": "MESSAGE_FACE_GUARD",
"timeStamp": "1583317657000",
"data": {
"region": "1234567",
"detectTime": "1584599831303",
"alarmContext": {
"alarmTime": 1723427340154,
"taskName": "人脸守护任务",
"peopleName": "人员名称",
"peoplePhoto": "https://xxxxx",
"alarmType": "人员守护",
"deviceList": [
{
"deviceId": "xxxxxx",
"deviceName": "设备名称"
}
]
}
}
}
]
}